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__",
"version": "1.0.0",
"description": "__MSG_extDes__",
"homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/json\/mbcbnjkaeapmnikoghcpcmepbpbfdidk",
"action": {
"default_icon": ".\/assets\/icon-512.png",
"default_popup": ".\/dist\/popup\/index.html"
},
"default_locale": "en",
"options_ui": {
"page": ".\/dist\/popup\/index.html",
"open_in_tab": false
},
"background": {
"service_worker": ".\/dist\/background\/index.mjs"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"dist\/contentScripts\/index.global.js"
]
}
],
"icons": {
"16": ".\/assets\/icon-512.png",
"48": ".\/assets\/icon-512.png",
"128": ".\/assets\/icon-512.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*\/*",
"<all_urls>"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}