Multiselect
Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.
Cos'è Multiselect?
Multiselect è un'estensione di Chrome sviluppata da andteoh, e la sua funzione principale è "Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Multiselect
Scarica i file di estensione Multiselect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Multiselect |
ID | dbpaociiilnmobllfmfmgjnjlbamaikk |
URL Ufficiale | https://chromewebstore.google.com/detail/multiselect/dbpaociiilnmobllfmfmgjnjlbamaikk |
Descrizione | Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck. |
Dimensione del File | 36.64 KB |
Conteggio Installazioni | 43 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-09-26 |
Data di Pubblicazione | 2023-09-26 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | andteoh |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } ] } |