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,
"version": "5.3",
"author": "Juraj M\u00e4siar",
"default_locale": "en",
"name": "__MSG_app_name__",
"description": "__MSG_app_desc__",
"icons": {
"48": "48.png",
"128": "128.png"
},
"background": {
"service_worker": "background.loader.js"
},
"action": {
"default_icon": {
"128": "128.png"
},
"default_popup": "popup\/popup.html"
},
"commands": {
"toggle-highlight": {
"suggested_key": {
"default": "Ctrl+Shift+H"
},
"description": "Toggles global highlight ON \/ OFF"
}
},
"permissions": [
"contextMenus",
"storage",
"scripting",
"alarms",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"run_at": "document_start",
"js": [
"content_scripts\/page_loaded.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"editor\/editor.css",
"editor\/editor.html",
"editor\/editor.js",
"utils\/svg\/resize-corner.svg"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
]
}