Inspect and view changes in ClipDown - I.G 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.1",
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
"16": "images/icon_16.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"action": {
"default_icon": "images/icon_24.png",
"default_title": "__MSG_appName__"
},
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"*://*.instagram.com/*"
],
"css": [
"css/content.css"
],
"js": [
"js/jquery.js",
"js/content.js"
],
"run_at": "document_end"
}
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"css/*",
"i/*"
],
"matches": [
"*://*.instagram.com/*"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"short_name": "ClipDown"
}