Inspect and view changes in Save Instagram 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": "Save Instagram",
"description": "Collects batch of post links from Instagram Web and its set of photos",
"version": "4.0",
"permissions": [
"<all_urls>",
"tabs"
],
"background": {
"scripts": [
"background.js?0"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"extra/content_common.js?0",
"content_instagram.js?0"
]
}
],
"web_accessible_resources": [
"gpl-1.0.txt?0",
"popup.html?0",
"page.html?0"
],
"browser_action": {
"default_icon": "default-64.png",
"default_title": "Save Instagram"
},
"incognito": "spanning",
"options_ui": {
"page": "./options.html"
},
"manifest_version": 2
}