Inspect and view changes in DownloadMedia 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
{
"manifest_version": 2,
"name": "DownloadMedia",
"version": "2.0.0",
"description": "Download media using the context menu",
"options_ui": {
"page": "options/options.html"
},
"icons": {
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},
"background": {
"scripts": [
"shared/config.js",
"background/buildMenu.js",
"background/downloadAllMedia.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content/getAllMedia.js",
"content/getKeyboard.js"
]
}
],
"permissions": [
"downloads",
"menus",
"storage",
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "{59cf270a-ce77-4d58-affe-c60cedcfe03b}"
}
}
}