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.0",
"background": {
"service_worker": "\/js\/bg.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.instagram.com\/*"
],
"run_at": "document_idle",
"js": [
"\/js\/app.js"
],
"css": [
"\/css\/upload_ui.css"
]
}
],
"host_permissions": [
"https:\/\/*.instagram.com\/*"
],
"permissions": [
"webRequest",
"storage",
"cookies"
],
"icons": {
"128": "\/img\/128.png"
},
"action": {
"default_icon": "\/img\/128.png",
"default_title": "__MSG_name__"
},
"web_accessible_resources": [
{
"resources": [
"\/img\/*",
"\/font\/*"
],
"matches": [
"https:\/\/*.instagram.com\/*"
]
}
]
}