Emacs shortcuts IME

US keyboard with emacs shortcut

Emacs shortcuts IME क्या है?

Emacs shortcuts IME Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "US keyboard with emacs shortcut"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

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

crx प्रारूप में Emacs shortcuts IME एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Enable emacs like keybinds on ChromeOS using shortcuts

1. Install This IME
2. Select US(Emacs) Keyboard
3. Set shortcuts on chrome://extensions/shortcuts

Source code is available on https://github.com/OTL/emacs_shortcuts_ime                    

एक्सटेंशन की मूल जानकारी

नाम Emacs shortcuts IME Emacs shortcuts IME
ID mkegpdcnenfnhenaliggngipehndddne
आधिकारिक URL https://chromewebstore.google.com/detail/emacs-shortcuts-ime/mkegpdcnenfnhenaliggngipehndddne
विवरण US keyboard with emacs shortcut
फ़ाइल का आकार 26.64 KB
स्थापना संख्या 481
वर्तमान संस्करण 0.0.3
अंतिम अपडेट 2018-08-14
प्रकाशन तिथि 2018-08-13
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/OTL/emacs_shortcuts_ime
सहायता पृष्ठ URL https://github.com/OTL/emacs_shortcuts_ime/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Emacs shortcuts IME",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "US keyboard with emacs shortcut",
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "permissions": [
        "input"
    ],
    "commands": {
        "00-up": {
            "description": "Go Up (Ctrl+P)"
        },
        "01-down": {
            "description": "Go Down (Ctrl+N)"
        },
        "02-left": {
            "description": "Go Left (Ctrl+B)",
            "suggested_key": {
                "default": "Ctrl+B"
            }
        },
        "03-right": {
            "description": "Go Right (Crtl+F)"
        },
        "10-home": {
            "description": "Go Home (Ctrl+A)"
        },
        "11-end": {
            "description": "Go End (Ctrl+E)",
            "suggested_key": {
                "default": "Ctrl+E"
            }
        },
        "20-delete": {
            "description": "Delete (Ctrl+D)"
        },
        "30-backspace": {
            "description": "Backspace (Ctrl+H)"
        },
        "40-enter": {
            "description": "Enter (Ctrl+M)",
            "suggested_key": {
                "default": "Ctrl+M"
            }
        },
        "50-killend": {
            "description": "Kill line (Ctrl-K)"
        },
        "60-cut": {
            "description": "Cut (Ctrl+W)"
        },
        "61-paste": {
            "description": "Paste (Ctrl+Y)",
            "suggested_key": {
                "default": "Ctrl+Y"
            }
        },
        "90-original-ctrl-f": {
            "description": "Original Ctrl+F (not working)"
        }
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "input_components": [
        {
            "name": "US (Emacs)",
            "type": "ime",
            "id": "us_emacs_shourtcuts",
            "description": "US keyboard with emacs shortcut",
            "language": "en-US",
            "layouts": [
                "us"
            ]
        }
    ]
}