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",
"name": "__MSG_appName__",
"version": "0.3.0",
"manifest_version": 3,
"description": "__MSG_appDescription__",
"default_locale": "en",
"icons": {
"16": "icons\/icon-16.png",
"24": "icons\/icon-24.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"64": "icons\/icon-64.png",
"96": "icons\/icon-96.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_title": "__MSG_appName__",
"default_popup": "html\/index.html"
},
"background": {
"service_worker": "scripts\/background.js",
"type": "module"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/content.js"
]
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/inpage.js"
],
"world": "MAIN"
}
],
"permissions": [
"storage"
]
}