Disable key input

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

Cos'è Disable key input?

Disable key input è un'estensione di Chrome sviluppata da Takashi Sugimoto (tksugimoto), e la sua funzione principale è "特定のキー入力(キーボードショートカット)を無効化してページに入力できるようにする".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Disable key input

Scarica i file di estensione Disable key input in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ## ユースケース例
- 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. 無効化したいキーボードショートカット押下時のイベントをキャンセルする                    

Informazioni di Base sull'Estensione

Nome Disable key input Disable key input
ID eihngcominhnmnhnhnhkhebkkdnncimn
URL Ufficiale https://chromewebstore.google.com/detail/disable-key-input/eihngcominhnmnhnhnhkhebkkdnncimn
Descrizione 特定のキー入力(キーボードショートカット)を無効化してページに入力できるようにする
Dimensione del File 5.25 KB
Conteggio Installazioni 61
Versione Corrente 0.1.0
Ultimo Aggiornamento 2019-05-18
Data di Pubblicazione 2019-05-18
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Takashi Sugimoto (tksugimoto)
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tksugimoto/chrome-extension_disable-key-input
Lingue Supportate 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"
    }
}