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": "Chrome Extension Source Viewer\/Downloader",
"version": "1.0.0",
"description": "Activate this extension to access the functionality and features of Chrome extensions (CRX\/ZIP)",
"icons": {
"16": "icons\/ICON16.png",
"32": "icons\/ICON32.png",
"64": "icons\/ICON64.png",
"128": "icons\/ICON128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"options_page": "options.html",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/ICON16.png",
"32": "icons\/ICON32.png",
"64": "icons\/ICON64.png",
"128": "icons\/ICON128.png"
}
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"notifications",
"storage"
],
"host_permissions": [
"<all_urls>"
]
}