Inspect and view changes in ig Follower export tools - IGExport source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_default_title__",
"description": "__MSG_description__",
"default_locale": "zh_CN",
"version": "1.0.1",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"storage",
"tabs",
"cookies"
],
"host_permissions": [
"*://*/*",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches": [
"*://*.instagram.com/*"
],
"js": [
"js/content.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"fonts/*",
"img/website/*",
"js/injectedXhr.js"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Opens popup.html"
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}