Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "1.4.1",
"action": {
"default_popup": "src\/layouts\/popup.html",
"default_icon": "icons\/icon-128_x_128.png"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"contextMenus"
],
"options_ui": {
"page": "src\/layouts\/options.html",
"open_in_tab": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"js": [
"src\/js\/contentScript.js"
]
},
{
"matches": [
"*:\/\/colorspicker.net\/*"
],
"run_at": "document_end",
"js": [
"src\/js\/colorsPickerSiteContent.js"
]
}
],
"background": {
"service_worker": "src\/js\/serviceWorker.js",
"type": "module"
},
"icons": {
"16": "icons\/icon-16_x_16.png",
"32": "icons\/icon-32_x_32.png",
"64": "icons\/icon-64_x_64.png",
"128": "icons\/icon-128_x_128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}