ctrlw

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

ctrlw क्या है?

ctrlw Sam Lazarus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ctrlw एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}