Automatic Keywords Highlighter
Automatically highlights given keywords on any web page you visit.
什麼是Automatic Keywords Highlighter?
Automatic Keywords Highlighter是由Matthias Path開發的Chrome擴展程式,該擴展的主要功能是“Automatically highlights given keywords on any web page you visit.”。
擴展截圖
下載Automatic Keywords Highlighter擴展crx文件
下載Automatic Keywords Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Set a list of keywords and Automatic Keywords Highlighter will automatically highlight them on any web page you visit. The icon shows you how often a keyword was highlighted on the current page. Instead of searching for the interesting bits of a web page, let Automatic Keywords Highlighter show them to you instantly. Simply type in a list of keywords and pick your favourite highlighter color. Stop searching! Use Automatic Keywords Highlighter!
擴展基本資訊
名稱 | |
ID | gcpknobcboilhnacklgmaamlcnblneoi |
官方網址 | https://chrome.google.com/webstore/detail/automatic-keywords-highli/gcpknobcboilhnacklgmaamlcnblneoi |
簡介 | Automatically highlights given keywords on any web page you visit. |
檔案大小 | 46.37 KB |
安裝次數 | 5,000 |
目前版本 | 0.1.0 |
更新時間 | 2015-04-15 |
上架時間 | 2015-04-15 |
評分 | 3.36/5 共 36 次評分 |
開發者 | Matthias Path |
付費類型 | free |
擴展官網 | https://github.com/wrzlbrmft/chrome-keywords-highlighter/blob/master/README.md |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Automatic Keywords Highlighter", "short_name": "Automatic Keywords Highlighter", "description": "Automatically highlights given keywords on any web page you visit.", "version": "0.1.0", "icons": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "72": "icons\/icon72.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "homepage_url": "https:\/\/github.com\/wrzlbrmft\/chrome-keywords-highlighter\/blob\/master\/README.md", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "browser_action": { "default_icon": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "72": "icons\/icon72.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "default_title": "Automatic Keywords Highlighter", "default_popup": "popup.html" }, "options_page": "options.html" } |