No pointer

This extension allows you to use your browser without a mouse.

No pointer क्या है?

No pointer Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to use your browser without a mouse."।

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

screenshot

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

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

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

                        Mouseless browsing!

Yes! Throw away your mouse. You don't need it to browse the internet anymore! 

Press ctrl+shift+a to show keyboard shortcuts to links. Press any of the keys on screen to go to that link. Press ctrl+shift+a again to show shortcuts to the next batch of links.

Press ctrl+alt+a to show keyboard shortcuts to links. Opens in a new tab. Press ctrl+alt+a again to show shortcuts to the next batch of links.

Press ctrl+shift+s to show keyboard shortcuts to inputs. Press any of the keys on screen to set focus to that input.

Note: This is by no means a finished product. It is super experimental. While it probably won't break anything, i'm sure there's bugs in there and not all websites will be supported. 

Feel free to report any bugs to me.

Github repo: https://github.com/c00/no-pointer                    

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

नाम No pointer No pointer
ID hfphokgchjldfbhppbpechglfmonbdcm
आधिकारिक URL https://chromewebstore.google.com/detail/no-pointer/hfphokgchjldfbhppbpechglfmonbdcm
विवरण This extension allows you to use your browser without a mouse.
फ़ाइल का आकार 48.72 KB
स्थापना संख्या 68
वर्तमान संस्करण 0.1
अंतिम अपडेट 2017-08-15
प्रकाशन तिथि 2017-08-13
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No pointer",
    "description": "This extension allows you to use your browser without a mouse.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "mousetrap.js",
                "content.js"
            ]
        }
    ]
}