Toggle checkboxes

Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.

O que é Toggle checkboxes?

Toggle checkboxes é uma extensão do Chrome desenvolvida por https://shubhamsonar.com, e sua principal característica é "Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Toggle checkboxes

Baixe arquivos de extensão Toggle checkboxes 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

                        This extension will help you Check OR Uncheck all checkbox fields on the page using a single click.

It will only work for checkboxes which are readable and are not disabled to respect integrity of the UX provided by website providers. It shall also not work with websites which use custom checkbox elements than traditional checkbox elements.

This is a small yet a powerful productivity tool, use with caution only where its needed at your own responsibility.

Hope this saves some time for you ❤️

Best,
Shubham Sonar                    

Informações Básicas da Extensão

Nome Toggle checkboxes Toggle checkboxes
ID hjnjacpbkjdiolbimbbfkfcnjmaojgad
URL Oficial https://chromewebstore.google.com/detail/toggle-checkboxes/hjnjacpbkjdiolbimbbfkfcnjmaojgad
Descrição Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.
Tamanho do Arquivo 8.42 KB
Contagem de Instalações 47
Versão Atual 1.0
Última Atualização 2024-01-03
Data de Publicação 2023-10-12
Desenvolvedor https://shubhamsonar.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://shubhamsonar.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Toggle checkboxes",
    "description": "Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_title": "Click to toggle all checkboxes",
        "default_icon": {
            "128": ".\/icons\/128.png",
            "48": ".\/icons\/48.png",
            "32": ".\/icons\/32.png",
            "16": ".\/icons\/16.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": ".\/icons\/128.png",
        "48": ".\/icons\/48.png",
        "32": ".\/icons\/32.png",
        "16": ".\/icons\/16.png"
    }
}