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": "Simple Web Highlighter \u2014 Save & Organize Text Instantly",
"version": "13.0",
"description": "Highlight text on any webpage, save it automatically, and share it with others. Perfect for studying, research, and productivity.",
"default_locale": "en",
"homepage_url": "https:\/\/yourwebsite.com\/privacy-policy.html",
"icons": {
"16": "images\/icon1.png",
"48": "images\/icon1.png",
"128": "images\/icon1.png"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs",
"contextMenus"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_matches": [
"https:\/\/chrome.google.com\/webstore\/*",
"https:\/\/chromewebstore.google.com\/*"
],
"js": [
"i18n.js",
"storage-manager.js",
"content.js"
],
"run_at": "document_start",
"all_frames": false,
"match_about_blank": false,
"match_origin_as_fallback": false
}
],
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_appName__"
},
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"*.png",
"*.jpg",
"*.gif",
"*.svg",
"help.html",
"help.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"commands": {
"highlight-selected": {
"suggested_key": {
"default": "Ctrl+Shift+H",
"mac": "Command+Shift+H"
},
"description": "Highlight selected text with default color"
},
"highlight-yellow": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Highlight selected text with yellow"
},
"highlight-green": {
"suggested_key": {
"default": "Ctrl+Shift+G",
"mac": "Command+Shift+G"
},
"description": "Highlight selected text with green"
},
"highlight-blue": {
"suggested_key": {
"default": "Ctrl+Shift+B",
"mac": "Command+Shift+B"
},
"description": "Highlight selected text with blue"
}
}
}