Image Downloader helps to find and download all images from a web page.
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": 3,
"version": "0.1",
"name": "__MSG_extName__",
"homepage_url": "https://microsoftedge.microsoft.com/addons/Microsoft-Edge-Extensions-Home",
"description": "__MSG_extDescription__",
"default_locale": "en",
"permissions": [
"activeTab",
"downloads",
"scripting",
"declarativeNetRequest",
"storage"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"host_permissions": [
"*://*/*"
],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"js/chunk-vendors.js",
"js/chunk-common.js",
"js/sidebar.js"
],
"css": [
"css/chunk-common.css",
"css/sidebar.css"
],
"matches": [
"*://*/*"
],
"run_at": "document_end"
},
{
"all_frames": true,
"js": [
"js/images-observer.js"
],
"matches": [
"*://*/*"
],
"run_at": "document_end"
}
],
"action": {
"default_title": "__MSG_extName__",
"default_icon": {
"19": "icons/19.png",
"38": "icons/38.png"
}
},
"options_ui": {
"page": "options.html"
},
"content_security_policy": {
"extension_pages": "script-src 'self' ; object-src 'self'"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}