Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "2.1",
"background": {
"service_worker": "\/js\/bg.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.instagram.com\/*"
],
"js": [
"js\/app.js"
],
"css": [
"css\/content.css"
],
"run_at": "document_idle",
"all_frames": true
}
],
"permissions": [
"storage",
"downloads",
"offscreen",
"tabs",
"cookies",
"webRequest"
],
"host_permissions": [
"https:\/\/*.instagram.com\/*",
"https:\/\/*.cdninstagram.com\/*"
],
"icons": {
"128": "\/icons\/128.png"
},
"action": {
"default_icon": "\/icons\/128.png",
"default_title": "__MSG_name__"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self' 'wasm-unsafe-eval';"
},
"web_accessible_resources": [
{
"resources": [
"\/icons\/*"
],
"matches": [
"https:\/\/*.instagram.com\/*"
]
}
]
}