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",
"description": "Search and highlight multiple words on web pages.",
"version": "1.0.0",
"manifest_version": 3,
"name": "Multi Highlight",
"homepage_url": "https:\/\/miaplacidus-extensions.vercel.app\/",
"action": {
"default_popup": "popup.html",
"default_title": "Multi Highlight",
"default_icon": "icon-32.png"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"64": "icon-64.png",
"128": "icon-128.png"
},
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"permissions": [
"contextMenus",
"storage"
]
}