ctrlw

A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!

ctrlw란 무엇입니까?

ctrlw은(는) Sam Lazarus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!"입니다.

ctrlw 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        I wrote this extension after the thousandth time I had closed a tab while meaning to delete a word. If you are tired of Chrome hijacking your muscle memory on ^W, this extension is for you! It provides two commands, one which does nothing, and one which closes the current tab. If you map the former to Ctrl-W, and the latter to Alt-W, you will never again mistakenly close a tab!

A future version may include the expected Ctrl-W functionality, but don't hold your breath.                    

확장 프로그램 기본 정보

이름 ctrlw ctrlw
ID goejokenmdamcapadhgghgpeeaeaaedc
공식 URL https://chromewebstore.google.com/detail/ctrlw/goejokenmdamcapadhgghgpeeaeaaedc
설명 A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!
파일 크기 19.34 KB
설치 횟수 832
현재 버전 0.0.1
최근 업데이트 2018-08-01
출시 날짜 2018-08-01
평점 3.82/5 총 17 개의 평점
개발자 Sam Lazarus
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ctrlw",
    "author": "Sam Lazarus",
    "version": "0.0.1",
    "description": "A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/Icon16.png",
        "32": "images\/Icon32.png",
        "48": "images\/Icon48.png",
        "128": "images\/Icon128.png"
    },
    "commands": {
        "do-nothing": {
            "suggested-key": {
                "default": "Ctrl-W",
                "mac": "MacCtrl-W"
            },
            "description": "Do absolutely nothing!"
        },
        "close-tab": {
            "suggested-key": {
                "default": "Alt-W"
            },
            "description": "Close the current tab"
        }
    },
    "manifest_version": 2
}