Multicheck Checkbox Checker

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

Apa itu Multicheck Checkbox Checker?

Multicheck Checkbox Checker adalah ekstensi Chrome yang dikembangkan oleh Checkbox Checker, dan fitur utamanya adalah "Simply check or uncheck multiple checkboxes at a time by clicking and dragging.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Multicheck Checkbox Checker

Unduh file ekstensi Multicheck Checkbox Checker 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

                        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.                    

Informasi Dasar Ekstensi

Nama Multicheck Checkbox Checker Multicheck Checkbox Checker
ID bmcleiancmakcoknkgnfgijomcddhpbi
URL Resmi https://chromewebstore.google.com/detail/multicheck-checkbox-check/bmcleiancmakcoknkgnfgijomcddhpbi
Deskripsi Simply check or uncheck multiple checkboxes at a time by clicking and dragging.
Ukuran File 198 KB
Jumlah Instalasi 11,279
Versi Saat Ini 2.5
Terakhir Diperbarui 2022-02-19
Tanggal Publikasi 2019-02-14
Penilaian 2.81/5 Total 143 Penilaian
Pengembang Checkbox Checker
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
    ]
}