Highlight This: finds and marks words
Automatically finds and highlights words and phrases on the web page according to your list
什麼是Highlight This: finds and marks words?
Highlight This: finds and marks words是由https://alaaqweider.online開發的Chrome擴展程式,該擴展的主要功能是“Automatically finds and highlights words and phrases on the web page according to your list”。
擴展截圖
下載Highlight This: finds and marks words擴展crx文件
下載Highlight This: finds and marks words擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Automatically finds and highlights words and phrases on the web page according to your list
- No registration required
- Organize your search words in groups and lists
- All data stored locally
- Auto-refreshes highlights on page reload and content changes
- Unlimited words and lists
- Free
Easy to use Chrome Extension that automatically searches for defined words in the current browser tab
and marks them in a text. Many more advanced features available through settings:
- Create color-coded keyword lists
- Disable highlighting on certain sites
- Export or import your settings and keyword lists
- Use lists from Pastebin
Changelog
1.1
*updated latest jquery 3.4.1
1.0
*Intial Release 擴展基本資訊
| 名稱 | |
| ID | aflnhjcbpnknodmnmjjlphgcichcfbak |
| 官方網址 | https://chrome.google.com/webstore/detail/highlight-this-finds-and/aflnhjcbpnknodmnmjjlphgcichcfbak |
| 簡介 | Automatically finds and highlights words and phrases on the web page according to your list |
| 檔案大小 | 1.01 MB |
| 安裝次數 | 4,000 |
| 目前版本 | 1.1 |
| 更新時間 | 2019-07-09 |
| 上架時間 | 2019-07-04 |
| 評分 | 3.00/5 共 1 次評分 |
| 開發者 | https://alaaqweider.online |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en,fr,nl,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_application_title__",
"short_name": "Chromium-Highlighter",
"description": "__MSG_application_description__",
"default_locale": "en",
"permissions": [
"tabs",
"contextMenus",
"notifications",
"activeTab",
"alarms",
"downloads",
"storage"
],
"icons": {
"16": "Plugin16.png",
"96": "Plugin96.png"
},
"background": {
"scripts": [
"libs\/sanitize-html\/sanitize-html.js",
"extWordHighlighter.js"
]
},
"commands": {
"ScrollHighlight": {
"suggested_key": {
"default": "Ctrl+Shift+Space",
"mac": "Command+Shift+Space"
},
"description": "ScrollHighlight"
}
},
"version": "1.1",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"libs\/jquery\/jquery-3.4.1.js",
"hilitor.js",
"tabWordHighlighter.js"
],
"css": [
"highlightThis.css"
],
"all_frames": true,
"run_at": "document_start",
"match_about_blank": true
}
],
"browser_action": {
"default_icon": "Plugin16.png",
"default_popup": "popup.html"
}
} | |