Multi-Highlight Tool
Search and highlight multiple words on web pages.
什么是Multi-Highlight Tool?
Multi-Highlight Tool是由multihighttoolextension开发的Chrome扩展程序,该扩展的主要功能是“Search and highlight multiple words on web pages.”。
扩展截图
下载Multi-Highlight Tool扩展crx文件
下载Multi-Highlight Tool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Easily add words to a list and have them highlighted on web pages.
扩展基本信息
名称 | Multi-Highlight Tool |
ID | elbamfklmdfhbighpndmfdidofdonigb |
官方URL | https://chromewebstore.google.com/detail/multi-highlight-tool/elbamfklmdfhbighpndmfdidofdonigb |
简介 | Search and highlight multiple words on web pages. |
文件大小 | 50.12 KB |
安装次数 | 30,204 |
当前版本 | 1.0 |
更新时间 | 2021-08-28 |
上架时间 | 2021-08-28 |
评分 | 4.43/5 共14次评分 |
开发者 | multihighttoolextension |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "background": { "persistent": false, "scripts": [ "js\/jquery.js", "js\/background.js" ] }, "browser_action": { "default_icon": "img\/19x19.png", "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "css": [ "css\/highlight.css" ], "js": [ "js\/jquery.js", "js\/highlighter.js", "js\/content-action.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ] } ], "description": "Search and highlight multiple words on web pages.", "icons": { "100": "img\/100x100.png", "128": "img\/128x128.png", "19": "img\/19x19.png", "48": "img\/48x48.png" }, "manifest_version": 2, "name": "Multi-Highlight Tool", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0" } |