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.1",
"description": "__MSG_extDescription__",
"default_locale": "en",
"permissions": [
"storage",
"activeTab",
"tabs",
"contextMenus",
"sidePanel",
"declarativeNetRequest"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_icon": {
"16": "images\/icon.png",
"48": "images\/icon.png",
"128": "images\/icon.png"
},
"default_title": "__MSG_extName__"
},
"icons": {
"16": "images\/icon.png",
"48": "images\/icon.png",
"128": "images\/icon.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"styles.css"
],
"all_frames": true
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"popup.html",
"popup.css",
"popup.js",
"_locales\/*\/*.json"
],
"matches": [
"<all_urls>"
]
}
],
"side_panel": {
"default_path": "popup.html"
}
}