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_extensionName__",
"version": "1.2.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"permissions": [
"tabs",
"storage",
"activeTab",
"contextMenus",
"tabGroups",
"alarms"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "Tab Color"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"styles\/tab-line.css"
],
"js": [
"content\/content.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"options_ui": {
"page": "options\/options.html",
"open_in_tab": true
},
"commands": {
"color-red": {
"suggested_key": {
"default": "Alt+1"
},
"description": "Apply Red"
},
"color-blue": {
"suggested_key": {
"default": "Alt+2"
},
"description": "Apply Blue"
},
"color-green": {
"suggested_key": {
"default": "Alt+3"
},
"description": "Apply Green"
},
"remove-color": {
"suggested_key": {
"default": "Alt+0"
},
"description": "Remove Color"
}
}
}