Multiselect

Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.

Wat is Multiselect?

Multiselect is een Chrome-extensie ontwikkeld door andteoh, en de belangrijkste functie is "Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Multiselect

Download Multiselect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Multiselect Multiselect
ID dbpaociiilnmobllfmfmgjnjlbamaikk
Officiële URL https://chromewebstore.google.com/detail/multiselect/dbpaociiilnmobllfmfmgjnjlbamaikk
Beschrijving Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.
Bestandsgrootte 36.64 KB
Aantal Installaties 43
Huidige Versie 1.0
Laatst Bijgewerkt 2023-09-26
Publicatiedatum 2023-09-26
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar andteoh
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}