Highlight tool
Highlight tool with jumps and Regex
Apa itu Highlight tool?
Highlight tool adalah ekstensi Chrome yang dikembangkan oleh Utopia, dan fitur utamanya adalah "Highlight tool with jumps and Regex".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Highlight tool
Unduh file ekstensi Highlight tool 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
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.
Informasi Dasar Ekstensi
Nama | |
ID | bocgmaooafgikalnonpaccinefpncobc |
URL Resmi | https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc |
Deskripsi | Highlight tool with jumps and Regex |
Ukuran File | 209 KB |
Jumlah Instalasi | 3,000 |
Versi Saat Ini | 0.0.6 |
Terakhir Diperbarui | 2017-02-14 |
Tanggal Publikasi | 2017-02-14 |
Penilaian | 4.00/5 Total 5 Penilaian |
Pengembang | Utopia |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |