Easy download images while browsing on the web
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",
"action": {
"default_icon": "images/icon-32.png",
"default_popup": "popup.html",
"default_title": "__MSG_appButtonDesc__"
},
"background": {
"service_worker": "js/background.js"
},
"content_security_policy": {
"sandbox": "sandbox allow-forms allow-scripts; script-src 'self' 'unsafe-eval'; script-src-elem 'self' blob: 'unsafe-inline' 'unsafe-eval'; child-src 'self'; object-src 'self'"
},
"default_locale": "en",
"description": "__MSG_appDesc__",
"host_permissions": [
"http://*/*",
"https://*/*"
],
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-64.png",
"128": "images/icon-128.png"
},
"manifest_version": 3,
"name": "__MSG_appName__",
"permissions": [
"activeTab",
"downloads",
"storage",
"webRequest",
"scripting",
"declarativeNetRequest",
"cookies",
"unlimitedStorage",
"tabs",
"declarativeNetRequestWithHostAccess"
],
"sandbox": {
"pages": [
"js/sandbox.html"
]
},
"version": "1.0.0.3",
"web_accessible_resources": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"resources": [
"js/sandbox.html"
],
"use_dynamic_url": true
}
]
}