Multicheck Checkbox Checker

Simply check or uncheck multiple checkboxes at a time by clicking and dragging.

O que é Multicheck Checkbox Checker?

Multicheck Checkbox Checker é uma extensão do Chrome desenvolvida por Checkbox Checker, e sua principal característica é "Simply check or uncheck multiple checkboxes at a time by clicking and dragging.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Multicheck Checkbox Checker

Baixe arquivos de extensão Multicheck Checkbox Checker 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

                        Allows you to check multiple checkboxes quickly by CLICKING & DRAGGING or even quicker with an ALT+CLICK & DRAG area select. You may need to refresh your browser window after installation for this extension to work.

*UPDATE*
Here is a short user-created video tutorial describing how to implement this extension.
https://youtu.be/MazQnq-RcC8

Feel free to post any comments or bugs, but unfortunately the developer will not be able to address any of them at this time.                    

Informações Básicas da Extensão

Nome Multicheck Checkbox Checker Multicheck Checkbox Checker
ID bmcleiancmakcoknkgnfgijomcddhpbi
URL Oficial https://chromewebstore.google.com/detail/multicheck-checkbox-check/bmcleiancmakcoknkgnfgijomcddhpbi
Descrição Simply check or uncheck multiple checkboxes at a time by clicking and dragging.
Tamanho do Arquivo 198 KB
Contagem de Instalações 11,279
Versão Atual 2.5
Última Atualização 2022-02-19
Data de Publicação 2019-02-14
Classificação 2.81/5 Total de 143 Avaliações
Desenvolvedor Checkbox Checker
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Multicheck Checkbox Checker",
    "version": "2.5",
    "description": "Simply check or uncheck multiple checkboxes at a time by clicking and dragging.",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "128": "icon-default.png"
        },
        "default_title": "Multicheck Checkbox Checker"
    },
    "background": {
        "service_worker": "toggle.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/fontsg.com\/*"
    ]
}