Easily save images with a wide range of customization features, such as file size, dimensions, and image type.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"action": {},
"background": {
"service_worker": "worker.js"
},
"commands": {
"_execute_action": {
"description": "Press the action button"
}
},
"default_locale": "en",
"description": "__MSG_app_description__",
"homepage_url": "https://add0n.com/save-images.html",
"icons": {
"16": "data/icons/16.png",
"32": "data/icons/32.png",
"48": "data/icons/48.png",
"64": "data/icons/64.png",
"128": "data/icons/128.png",
"256": "data/icons/256.png"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end"
}
],
"manifest_version": 3,
"name": "Download All Images For Edge",
"options_ui": {
"open_in_tab": true,
"page": "data/options/index.html"
},
"host_permissions": [
"http://*/*",
"https://*/*"
],
"permissions": [
"storage",
"activeTab",
"scripting",
"notifications",
"downloads",
"unlimitedStorage",
"declarativeNetRequest"
],
"version": "1.0.1",
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"data/inject/core/index.html",
"data/ui/index.html",
"data/gallery/index.html"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}