Highlighter
Highlights a user-defined list of keywords on all web pages.
什麼是Highlighter?
Highlighter是由gingerbeardman開發的Chrome擴展程式,該擴展的主要功能是“Highlights a user-defined list of keywords on all web pages.”。
下載Highlighter擴展crx文件
下載Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Highlight a user defined list of keywords on webpages you visit. Supports groups of words that will highlight in the same colour, and lots more!
- keywords support plain text and regular expressions!
- easy keyword entry
- with paste support
- drag and drop reordering
- automatic colouring
- instant update on the page
- page action
- options page
- highlight toggle
- works with dynamic content
- context menu
- fast!
Open source: 擴展基本資訊
| 名稱 | |
| ID | oibnefncafkleabfjlfheddocehlinga |
| 官方網址 | https://chrome.google.com/webstore/detail/highlighter/oibnefncafkleabfjlfheddocehlinga |
| 簡介 | Highlights a user-defined list of keywords on all web pages. |
| 檔案大小 | 129 KB |
| 安裝次數 | 519 |
| 目前版本 | 1.0.0 |
| 更新時間 | 2014-01-21 |
| 上架時間 | 2014-01-21 |
| 評分 | 3.11/5 共 9 次評分 |
| 開發者 | gingerbeardman |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Highlighter",
"description": "Highlights a user-defined list of keywords on all web pages.",
"version": "1.0.0",
"permissions": [
"storage",
"tabs",
"contextMenus"
],
"options_page": "options.html",
"background": {
"scripts": [
"js\/background.js"
]
},
"page_action": {
"default_icon": {
"16": "img\/icon16.png",
"19": "img\/icon19.png",
"38": "img\/icon38.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"default_title": "Highlighter",
"default_popup": "popup.html"
},
"content_scripts": [
{
"css": [
"css\/highlight.css"
],
"js": [
"js\/jquery.min.js",
"js\/jquery.highlightregex.min.js",
"js\/highlight.regex.min.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_idle",
"all_frames": false
}
],
"icons": {
"16": "img\/icon16.png",
"19": "img\/icon19.png",
"38": "img\/icon38.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"manifest_version": 2
} | |