Block Ctrl W

To block ctrl w

Block Ctrl Wとは何ですか?

Block Ctrl WはLawrence Linによって開発されたChromeの拡張機能で、その主な機能は「To block ctrl w」です。

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

screenshot

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

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

拡張機能の使用方法

                        To block Ctrl + w and send notify via post message

#Usage
1. Add Apps to Chrome
2. Open chrome://extensions/shortcuts
3. Find out “Block Ctrl W”
4. Click the Edit button
5. Press Ctrl & W button at the same time                    

拡張機能の基本情報

名前 Block Ctrl W Block Ctrl W
ID mhbmkjeobiilhccdahbidgaabnnkpkia
公式URL https://chromewebstore.google.com/detail/block-ctrl-w/mhbmkjeobiilhccdahbidgaabnnkpkia
説明 To block ctrl w
ファイルサイズ 16.26 KB
インストール数 748
現在のバージョン 1.0.3
最終更新日 2022-06-26
公開日 2022-05-26
評価 4.00/5 合計 2 レビュー
開発者 Lawrence Lin
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Block Ctrl W",
    "description": "To block ctrl w",
    "version": "1.0.3",
    "manifest_version": 3,
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "block-ctrl-w": {
            "suggested_key": {
                "default": "Ctrl+W"
            },
            "description": "block ctrl w"
        }
    }
}