Word Highlighter
This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Apa itu Word Highlighter?
Word Highlighter adalah ekstensi Chrome yang dikembangkan oleh Rafael Almeida, dan fitur utamanya adalah "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Word Highlighter
Unduh file ekstensi Word Highlighter 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
The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter
Informasi Dasar Ekstensi
Nama | |
ID | ncjaameocjfjjnjcijikhkhifncjijhn |
URL Resmi | https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn |
Deskripsi | This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web |
Ukuran File | 229 KB |
Jumlah Instalasi | 826 |
Versi Saat Ini | 1.0.2 |
Terakhir Diperbarui | 2016-11-27 |
Tanggal Publikasi | 2016-11-27 |
Penilaian | 2.75/5 Total 8 Penilaian |
Pengembang | Rafael Almeida |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Highlighter", "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web", "version": "1.0.2", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "html\/popup.html" }, "permissions": [ "storage", "contextMenus" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.js", "js\/content.js" ] } ] } |