Inspect and view changes in Insta Downloader 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": "Insta Downloader",
"description": "Download Photos and Videos from Instagram Post, Reels, TV, Stories easily",
"version": "1.0.0",
"manifest_version": 3,
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"host_permissions": [
"https://www.instagram.com/*"
],
"action": {
"default_icon": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://www.instagram.com/*"
],
"js": [
"src/js/main.js",
"src/js/post.js",
"src/js/story.js",
"src/libs/jszip.min.js"
],
"css": [
"src/style/style.css"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}