Inspect and view changes in imgdl-tabs 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": "imgdl-tabs",
"version": "0.1.1",
"author": "Jirka Justra",
"description": "Downloads all images opened in tabs of current window into <download-path>/imgdl-tabs/<date> folder --- icon from: Martz90 http://martz90.deviantart.com/art/Hex-Icons-Pack-389706981",
"applications": {
"gecko": {
"id": "imgdl-tabs@jirka-justra.cz"
}
},
"icons": {
"72": "icons/imgdl--clean.svg",
"96": "icons/imgdl--clean.svg",
"128": "icons/imgdl--clean.svg",
"256": "icons/imgdl--clean.svg"
},
"browser_action": {
"default_icon": {
"72": "icons/imgdl--clean.svg",
"96": "icons/imgdl--clean.svg",
"128": "icons/imgdl--clean.svg",
"256": "icons/imgdl--clean.svg"
},
"default_title": "imgdl-tabs",
"browser_style": false
},
"permissions": [
"activeTab",
"contextMenus",
"downloads",
"tabs",
"<all_urls>"
],
"background": {
"scripts": [
"./lib/tea.js",
"./lib/downloader.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
]
}