Simple Word Highlighter
This extension highlights words on a webpage as specified by the user
什么是Simple Word Highlighter?
Simple Word Highlighter是由berdinemail开发的Chrome扩展程序,该扩展的主要功能是“This extension highlights words on a webpage as specified by the user”。
扩展截图
下载Simple Word Highlighter扩展crx文件
下载Simple Word Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you highlight words on any website. You can specify which websites to run on You can specify which words to highlight per page You can specify which color you would like to highlight with
扩展基本信息
名称 | |
ID | ojmcbcojgmdcdmnidlgjjajoniomibdj |
官方URL | https://chrome.google.com/webstore/detail/simple-word-highlighter/ojmcbcojgmdcdmnidlgjjajoniomibdj |
简介 | This extension highlights words on a webpage as specified by the user |
文件大小 | 103 KB |
安装次数 | 926 |
当前版本 | 1.0 |
更新时间 | 2014-10-24 |
上架时间 | 2014-10-24 |
评分 | 3.89/5 共9次评分 |
开发者 | berdinemail |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Word Highlighter", "description": "This extension highlights words on a webpage as specified by the user", "version": "1.0", "background": { "scripts": [ "Configure.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.min.js", "ModifyPage.js" ], "css": [ "Highlight.css" ], "all_frames": true } ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ] } |