Highlight tool
Highlight tool with jumps and Regex
Highlight toolとは何ですか?
Highlight toolはUtopiaによって開発されたChromeの拡張機能で、その主な機能は「Highlight tool with jumps and Regex」です。
拡張機能のスクリーンショット
Highlight tool拡張機能のCRXファイルをダウンロード
Highlight tool拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Quickly highlight text in webpages using regular text or RegExp. Press Ctrl+j to move to the next match, and Ctrl+k to move previous match.
拡張機能の基本情報
名前 | |
ID | bocgmaooafgikalnonpaccinefpncobc |
公式URL | https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc |
説明 | Highlight tool with jumps and Regex |
ファイルサイズ | 209 KB |
インストール数 | 3,000 |
現在のバージョン | 0.0.6 |
最終更新日 | 2017-02-14 |
公開日 | 2017-02-14 |
評価 | 4.00/5 合計 5 レビュー |
開発者 | Utopia |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.6", "name": "Highlight tool", "description": "Highlight tool with jumps and Regex", "manifest_version": 2, "icons": { "16": "images\/icon-16.png", "19": "images\/icon-19.png", "38": "images\/icon-38.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "popup.html" }, "permissions": [ "tabs", "storage", "notifications" ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "popup.html" ] } |