Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Webpage Image Downloader",
"version": "1.1",
"description": "Extract images from websites",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon1.png",
"48": "images\/icon2.png",
"128": "images\/icon3.png"
}
},
"icons": {
"16": "images\/icon1.png",
"48": "images\/icon2.png",
"128": "images\/icon3.png"
},
"permissions": [
"activeTab",
"scripting",
"storage"
],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js\/contentScript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"js\/jszip.min.js",
"js\/jszip-utils.min.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline';"
}
}