Disable key input

特定のキー入力(キーボードショートカット)を無効化してページに入力できるようにする

What is Disable key input?

Disable key input is a Chrome extension developed by Takashi Sugimoto (tksugimoto), and its main feature is "特定のキー入力(キーボードショートカット)を無効化してページに入力できるようにする".

Extension Screenshots

screenshot

Download Disable key input Extension CRX File

Download Disable key input extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        ## ユースケース例
- Webページで提供されているshellで `Ctrl` + `W` を使いたい
    - Webページで提供されているshellの例
        - [AWS Systems Manager Session Manager](https://aws.amazon.com/jp/blogs/news/new-session-manager/)
    - `Ctrl` + `W`
        - Chrome: タブを閉じる(通常はこちらが優先される)
        - shell: 単語単位で削除

## 仕組み
1. 現在のタブをChrome拡張のポップアップで新規に開く
    - Chromeのキーボードショートカットへの割り込みを可能にするため
1. 無効化したいキーボードショートカット押下時のイベントをキャンセルする                    

Extension Basic Information

Name Disable key input Disable key input
ID eihngcominhnmnhnhnhkhebkkdnncimn
Official URL https://chromewebstore.google.com/detail/disable-key-input/eihngcominhnmnhnhnhkhebkkdnncimn
Description 特定のキー入力(キーボードショートカット)を無効化してページに入力できるようにする
File Size 5.25 KB
Installation Count 61
Current Version 0.1.0
Last Updated 2019-05-18
Publish Date 2019-05-18
Rating 5.00/5 Total 2 Ratings
Developer Takashi Sugimoto (tksugimoto)
Email [email protected]
Payment Type free
Extension Website https://github.com/tksugimoto/chrome-extension_disable-key-input
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable key input",
    "description": "\u7279\u5b9a\u306e\u30ad\u30fc\u5165\u529b\uff08\u30ad\u30fc\u30dc\u30fc\u30c9\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff09\u3092\u7121\u52b9\u5316\u3057\u3066\u30da\u30fc\u30b8\u306b\u5165\u529b\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b",
    "version": "0.1.0",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}