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 |
官方網址 | 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" ] } |