Multiselect
Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.
O que é Multiselect?
Multiselect é uma extensão do Chrome desenvolvida por andteoh, e sua principal característica é "Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Multiselect
Baixe arquivos de extensão Multiselect no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Multiselect |
ID | dbpaociiilnmobllfmfmgjnjlbamaikk |
URL Oficial | https://chromewebstore.google.com/detail/multiselect/dbpaociiilnmobllfmfmgjnjlbamaikk |
Descrição | Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck. |
Tamanho do Arquivo | 36.64 KB |
Contagem de Instalações | 43 |
Versão Atual | 1.0 |
Última Atualização | 2023-09-26 |
Data de Publicação | 2023-09-26 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | andteoh |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } ] } |