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",
"name": "__MSG_APPNAME__",
"description": "__MSG_APPDESC__",
"author": "Extensions for IG",
"manifest_version": 3,
"version": "0.1.6",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.instagram.com\/*"
],
"js": [
"igsd.js"
],
"css": [
"styles.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"styles.css",
"icons\/*"
],
"matches": [
"*:\/\/*.instagram.com\/*"
]
}
],
"action": {
"default_icon": "icons\/icon16.png"
},
"default_locale": "en_US",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png",
"300": "icons\/icon300.png"
},
"permissions": [
"cookies",
"downloads",
"storage",
"tabs",
"webRequest"
],
"host_permissions": [
"*:\/\/*.instagram.com\/*"
]
}