Highlight Search Keywords
Highlight the keywords that you searched in google
Apa itu Highlight Search Keywords?
Highlight Search Keywords adalah ekstensi Chrome yang dikembangkan oleh Desheng Li, dan fitur utamanya adalah "Highlight the keywords that you searched in google".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Highlight Search Keywords
Unduh file ekstensi Highlight Search Keywords dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Highlight Search Keywords |
ID | nflhamjkngakbdnihackfkjoabknmooi |
URL Resmi | https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi |
Deskripsi | Highlight the keywords that you searched in google |
Ukuran File | 145 KB |
Jumlah Instalasi | 5,605 |
Versi Saat Ini | 0.4 |
Terakhir Diperbarui | 2019-08-21 |
Tanggal Publikasi | 2019-08-21 |
Penilaian | 3.21/5 Total 33 Penilaian |
Pengembang | Desheng Li |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } ] } |