Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "3.5.0",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"contentScript.js"
],
"css": [
"contentScriptCSS.css"
],
"all_frames": false
}
],
"action": {
"default_icon": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"default_popup": "popup.html",
"default_title": "__MSG_appName__"
},
"commands": {
"open_popup": {
"suggested_key": {
"default": "Alt+Shift+1"
},
"description": "Open Image Downloader Popup"
},
"open_panel": {
"suggested_key": {
"default": "Alt+Shift+2"
},
"description": "Open Image Downloader Side Panel"
}
},
"side_panel": {
"default_path": "popup.html"
},
"permissions": [
"activeTab",
"scripting",
"tabs",
"storage",
"downloads",
"sidePanel",
"management",
"downloads.ui",
"declarativeNetRequest"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"iFrame.js"
],
"matches": [
"<all_urls>"
]
}
]
}