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": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "0.0.1",
"icons": {
"16": "icons\/logo16.png",
"24": "icons\/logo24.png",
"32": "icons\/logo32.png",
"48": "icons\/logo48.png",
"64": "icons\/logo64.png",
"128": "icons\/logo128.png",
"256": "icons\/logo256.png"
},
"default_locale": "en",
"background": {
"service_worker": "js\/background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"js\/content_script.js"
],
"css": [
"css\/content_style.css"
]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*\/*"
]
}