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": "0.0.2",
"default_locale": "en",
"short_name": "__MSG_appName__",
"name": "__MSG_appName__",
"side_panel": {
"default_path": "options.html"
},
"description": "__MSG_shortDesc__",
"action": {
"default_title": "__MSG_appName__",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.bundle.js"
]
}
],
"icons": {
"16": "img\/16x16.png",
"48": "img\/48x48.png",
"64": "img\/64x64.png",
"128": "img\/128x128.png"
},
"options_page": "options.html",
"permissions": [
"activeTab",
"storage",
"sidePanel",
"contextMenus"
]
}