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. 擴展基本資訊
| 名稱 | |
| ID | elbamfklmdfhbighpndmfdidofdonigb |
| 官方網址 | 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"
} | |