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 扩展基本信息
| 名称 | |
| ID | ncjaameocjfjjnjcijikhkhifncjijhn |
| 官方URL | 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"
]
}
]
} | |