Inspect and view changes in Media Resources Enhancer 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": "Media Resources Enhancer",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA55kP2SZWaP45Wo4wpK7nZxMu5GZmsmeevhxOck2h11z/8KoQVEElc1L+fytaL+M87GhB/SVmUvgWcS/WOgnIyACJyVplx4brtpW3+qLNqQGyb9n4FfBV9bzmL/qHDi0xpDboxQirOM1Hequk1/gS74dTlF6g0jo+23XX7qOmGJi/UGrI/59nwqbT5iNloPL/TdYuXLhoPK7W4/nMNRPPZWs9TkGnQDlkdSUTCvABQxrZrhK61AEoOVng3cEbxoShErUsxZTyUvdeg31m2fdwx2EVqdZ7K7IBDs3D7sHEhqmDigocffxRmHv9QfIENcV+fmzXDRyVU6T72yac4qIjhwIDAQAB",
"version": "2.3.0",
"description": "Help you download images and videos easily on Instagram",
"homepage_url": "https://github.com/TheKonka/instagram-download-browser-extension",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"action": {
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png"
},
"default_title": "Instagram Downloader",
"default_popup": "popup/index.html"
},
"permissions": [
"storage",
"unlimitedStorage"
],
"background": {
"service_worker": "background/chrome.js"
},
"content_scripts": [
{
"js": [
"content/index.js"
],
"matches": [
"https://www.instagram.com/*",
"https://www.threads.net/*"
]
},
{
"matches": [
"https://www.instagram.com/*",
"https://www.threads.net/*"
],
"js": [
"inject.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"xhr.js"
],
"matches": [
"https://www.instagram.com/*",
"https://www.threads.net/*"
]
}
],
"externally_connectable": {
"matches": [
"https://www.instagram.com/*",
"https://www.threads.net/*"
]
}
}