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,
"name": "Multi Web find,Highlight,Export",
"version": "1.0",
"description": "One-click full-word matching and fuzzy search, multi-keyword searches with individual highlights, Export search results",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"activeTab",
"scripting",
"downloads",
"sidePanel",
"commands"
],
"host_permissions": [
"https:\/\/*\/*"
],
"action": {
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"side_panel": {
"default_path": "src\/sidepanel\/sidepanel.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"css": [
"src\/content\/content.css"
],
"js": [
"src\/content\/content.js"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "src\/background\/background.js"
},
"web_accessible_resources": [
{
"resources": [
"src\/content\/*"
],
"matches": [
"https:\/\/*\/*"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
},
"description": "\u6253\u5f00\u641c\u7d22\u9762\u677f"
}
}
}