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,
"version": "1.1.2",
"name": "__MSG_appName__",
"description": "__MSG_shortDesc__",
"default_locale": "en",
"permissions": [
"activeTab",
"downloads",
"contextMenus"
],
"action": {
"default_popup": "popup.html",
"default_title": "Download Images from Website",
"default_icon": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon64.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dist\/content.js"
]
}
],
"background": {
"service_worker": "dist\/background.js"
}
}