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,
"default_locale": "en",
"name": "__MSG_extensionName__",
"short_name": "ColorPicker",
"version": "2.0.5",
"version_name": "1.0.0",
"description": "__MSG_extensionDescription__",
"author": "Color Picker Pro Team",
"homepage_url": "https:\/\/github.com\/theluckystrike\/color-picker-pro",
"minimum_chrome_version": "116",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "src\/popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_title": "__MSG_browserActionTitle__"
},
"background": {
"service_worker": "src\/service-worker.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"src\/utils\/sanitize.js",
"src\/utils\/message-validator.js",
"src\/content\/content.js"
],
"css": [
"src\/content\/content.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"permissions": [
"activeTab",
"alarms",
"contextMenus",
"notifications",
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"https:\/\/api.colorpickerpro.com\/*",
"https:\/\/api.zovo.dev\/*"
],
"options_ui": {
"page": "src\/options\/options.html",
"open_in_tab": true
},
"storage": {
"managed_schema": "managed-schema.json"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'none'; base-uri 'none'; frame-ancestors 'none'; form-action 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self' https:\/\/api.colorpickerpro.com https:\/\/api.zovo.dev; upgrade-insecure-requests;"
},
"web_accessible_resources": [
{
"resources": [
"src\/components\/paywall.css",
"src\/content\/content.css"
],
"matches": [
"<all_urls>"
]
}
]
}