Inspect and view changes in クリック画像ダウンローダ 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": "クリック画像ダウンローダ",
"description": "ページ上でアイコンをクリックするとそのページ上の画像を全て一括でダウロードします。",
"version": "1.0.5",
"icons": {
"18": "icon.png"
},
"commands": {
"upload": {
"suggested_key": {
"default": "Ctrl+Alt+B"
},
"description": "クリック画像ダウンローダ"
}
},
"permissions": [
"<all_urls>",
"downloads",
"contextMenus",
"tabs",
"storage"
],
"browser_action": {
"default_icon": "icon.png"
},
"options_ui": {
"page": "options.html"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentscripts.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{003dedd4-8519-4293-9f12-bf3032e1be53}"
}
}
}