Mouse Trap - Keyboard Navigation

A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk.

Mouse Trap - Keyboard Navigation क्या है?

Mouse Trap - Keyboard Navigation Matt Deichler द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk."।

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

screenshot
screenshot

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

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

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

                        This extension provides keyboard accessibility to all clickable elements in a web page. This includes (but is not limited to):
- Links
- Buttons
- Input fields
- Select lists

Default keyboard shortcut: Ctrl+Shift+F
This can be changed from Chrome>Extensions>Shortcuts (chrome://extensions/shortcuts)

Enter the characters from the tag that you wish to click. 
- Enter will click the element
- Ctrl + Enter will attempt to open a link in a new browser tab

In the options you can change the placement of the alpha numeric "tags" and the input field.
You can also change the style (color, font, size, etc.) of both types of elements. 

Polling option can be used so that the "tags" are automatically refreshed on a regular interval instead of at the time of activating the extension. 
This is useful for websites that have a lot of elements per page. 
Set the interval. Default is 2 seconds. Must be specified in milliseconds
Optionally set white listed domains where you want polling to take effect. Leave blank for all sites. Regex notation can be used. 

Note: Extensions do not work on any "chrome://" pages                    

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

नाम Mouse Trap - Keyboard Navigation Mouse Trap - Keyboard Navigation
ID ckacjmhagpdaoaogehboabknaaadapgl
आधिकारिक URL https://chromewebstore.google.com/detail/mouse-trap-keyboard-navig/ckacjmhagpdaoaogehboabknaaadapgl
विवरण A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk.
फ़ाइल का आकार 10.72 KB
स्थापना संख्या 23
वर्तमान संस्करण 1.0
अंतिम अपडेट 2019-03-20
प्रकाशन तिथि 2019-03-19
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Matt Deichler
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mouse Trap - Keyboard Navigation",
    "version": "1.0",
    "description": "A hit-a-hint style keyboard navigation extension so that you can finally get rid of that rodent sitting on your desk.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "css": [
                "content.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "open_keynav": {
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            },
            "description": "Toggle Keyboard Navigation"
        }
    }
}