Highlight Search Keywords
Highlight the keywords that you searched in google
Highlight Search Keywordsとは何ですか?
Highlight Search KeywordsはDesheng Liによって開発されたChromeの拡張機能で、その主な機能は「Highlight the keywords that you searched in google」です。
拡張機能のスクリーンショット
Highlight Search Keywords拡張機能のCRXファイルをダウンロード
Highlight Search Keywords拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Since the new policy of Chrome Extension, to enable the extension again. Please click the icon -> This can read an change the site data -> On all site (recommended) or the site you are currently on. An extension that highlight the keywords that you searched on Google. Press F5 to remove the highlights.
拡張機能の基本情報
名前 | Highlight Search Keywords |
ID | nflhamjkngakbdnihackfkjoabknmooi |
公式URL | https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi |
説明 | Highlight the keywords that you searched in google |
ファイルサイズ | 145 KB |
インストール数 | 5,605 |
現在のバージョン | 0.4 |
最終更新日 | 2019-08-21 |
公開日 | 2019-08-21 |
評価 | 3.21/5 合計 33 レビュー |
開発者 | Desheng Li |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Highlight Search Keywords", "description": "Highlight the keywords that you searched in google", "version": "0.4", "permissions": [ "storage" ], "manifest_version": 2, "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*", "http:\/\/www.google.com\/*" ], "js": [ "catchkeywords.js" ], "run_at": "document_end" }, { "exclude_matches": [ "https:\/\/www.google.com\/*", "http:\/\/www.google.com\/*" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "highlightkeywords.js" ], "run_at": "document_end" } ] } |