Word Highlighter
This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
什麼是Word Highlighter?
Word Highlighter是由Rafael Almeida開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web”。
擴展截圖
下載Word Highlighter擴展crx文件
下載Word Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter
擴展基本資訊
名稱 | Word Highlighter |
ID | ncjaameocjfjjnjcijikhkhifncjijhn |
官方網址 | https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn |
簡介 | This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web |
檔案大小 | 229 KB |
安裝次數 | 826 |
目前版本 | 1.0.2 |
更新時間 | 2016-11-27 |
上架時間 | 2016-11-27 |
評分 | 2.75/5 共 8 次評分 |
開發者 | Rafael Almeida |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Highlighter", "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web", "version": "1.0.2", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "html\/popup.html" }, "permissions": [ "storage", "contextMenus" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.js", "js\/content.js" ] } ] } |