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": "Highlight Magic",
"description": "Enables user to highlight words",
"version": "1.1.5",
"action": {
"default_title": "Highlight Magic"
},
"permissions": [
"tabs",
"storage",
"contextMenus"
],
"icons": {
"16": "icons\/16px.png",
"48": "icons\/48px.png",
"128": "icons\/128px.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": [
"quickfind.js",
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
}
}