Multiselect

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

Multiselectとは何ですか?

Multiselectはandteohによって開発されたChromeの拡張機能で、その主な機能は「Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.」です。

拡張機能のスクリーンショット

screenshot

Multiselect拡張機能のCRXファイルをダウンロード

Multiselect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Multiselect Multiselect
ID dbpaociiilnmobllfmfmgjnjlbamaikk
公式URL https://chromewebstore.google.com/detail/multiselect/dbpaociiilnmobllfmfmgjnjlbamaikk
説明 Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.
ファイルサイズ 36.64 KB
インストール数 43
現在のバージョン 1.0
最終更新日 2023-09-26
公開日 2023-09-26
評価 5.00/5 合計 1 レビュー
開発者 andteoh
Eメール [email protected]
支払い方法 free
対応言語 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
        }
    ]
}