Checkvist extended commands

Adds some more VIM oriented commands to Checkvist

Checkvist extended commands क्या है?

Checkvist extended commands NicoSantangelo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds some more VIM oriented commands to Checkvist"।

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

screenshot

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

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

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

                        # What

It adds four new commands to Checkvist (https://checkvist.com)

Commands:

l - Expand node (same as `→`)
L - Focus the list item (same as `Shift →`)
h - Collapse node (same as `←`)
H - Un-focus the list item (same as `Shift ←`)
o - Add below (same as `enter`)
O - Add above (same as `alt+enter`)
G - Go to the last item in the tree (same as `End` or `Fn+Down`)
alt+g alt+g  - Go to the first item in the tree (same as `Home` or `Fn+Up`)
meta+j  - macOS users: Move list items down (same as `⌘ ↓`)
meta+k  - macOS users: Move list items up (same as `⌘ ↑`)

You can find the code at https://github.com/NicoSantangelo/checkvist-extended-commands                    

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

नाम Checkvist extended commands Checkvist extended commands
ID fofahggocngkjhdjmpplnaebognbkfmo
आधिकारिक URL https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo
विवरण Adds some more VIM oriented commands to Checkvist
फ़ाइल का आकार 41.83 KB
स्थापना संख्या 28
वर्तमान संस्करण 2.2.0
अंतिम अपडेट 2017-04-24
प्रकाशन तिथि 2017-04-23
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर NicoSantangelo
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/NicoSantangelo/checkvist-extended-commands
सहायता पृष्ठ URL https://github.com/NicoSantangelo/checkvist-extended-commands
गोपनीयता नीति पृष्ठ URL https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Checkvist extended commands",
    "description": "Adds some more VIM oriented commands to Checkvist",
    "short_name": "Checkvist commands",
    "version": "2.2.0",
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/checkvist.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "commands.js"
    ]
}