Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "1.0",
"background": {
"service_worker": "\/js\/bg.js"
},
"permissions": [
"webRequest",
"cookies",
"storage",
"tabs"
],
"host_permissions": [
"https:\/\/*.instagram.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.instagram.com\/*"
],
"js": [
"\/js\/app.js"
],
"css": [
"\/css\/style.css"
],
"run_at": "document_idle"
}
],
"icons": {
"128": "\/icons\/icon_128.png"
},
"action": {
"default_icon": "\/icons\/icon_128.png"
},
"web_accessible_resources": [
{
"resources": [
"\/font\/*",
"\/icons\/*"
],
"matches": [
"https:\/\/*.instagram.com\/*"
]
}
]
}