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.6",
"icons": {
"34": "icon\/34.png",
"128": "icon\/128.png"
},
"permissions": [
"activeTab",
"scripting",
"sidePanel",
"storage",
"contextMenus"
],
"action": {
"default_title": "Default Popup Title",
"default_popup": "popup.html"
},
"default_locale": "en",
"background": {
"service_worker": "background.js"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content-scripts\/content.js"
]
}
]
}