Multiselect
Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.
Apa itu Multiselect?
Multiselect adalah ekstensi Chrome yang dikembangkan oleh andteoh, dan fitur utamanya adalah "Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Multiselect
Unduh file ekstensi Multiselect 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
Taking too much effort to check and uncheck multiple checkboxes in a long list? Multiselect will help you get the job done quicker. Hold down Alt key and hover mouse cursor over the checkboxes to check them. To uncheck, press the Shift key and hover over those checkboxes.
Informasi Dasar Ekstensi
Nama | Multiselect |
ID | dbpaociiilnmobllfmfmgjnjlbamaikk |
URL Resmi | https://chromewebstore.google.com/detail/multiselect/dbpaociiilnmobllfmfmgjnjlbamaikk |
Deskripsi | Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck. |
Ukuran File | 36.64 KB |
Jumlah Instalasi | 43 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2023-09-26 |
Tanggal Publikasi | 2023-09-26 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | andteoh |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Multiselect", "author": "Andy Tech", "description": "Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck. ", "version": "1.0", "permissions": [ "activeTab" ], "icons": { "128": "images\/checkbox-128.png" }, "background": { "script": [ "thirdParty\/jquery3.7.1.min.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "thirdParty\/jquery3.7.1.min.js", "multicheck.js" ], "run_at": "document_end", "all_frames": true } ] } |