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" ] } |