Tab Keys
Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
Tab Keys क्या है?
Tab Keys thekiteeatingtree द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Keys एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Allows you to set keyboard shortcuts for selecting the next or previous tab. Also offers the ability to add a shortcut to pin tabs. The default shortcuts for next/prev tab are Ctrl+Right/Left. To edit the shortcuts click on the extension icon and hit 'Manage extensions'. Scroll to the bottom of the page and click 'Keyboard shortcuts'. This extensions shortcuts will be editable under the 'Tab Keys' header.
एक्सटेंशन की मूल जानकारी
नाम | ![]() |
ID | fmmkbjckdjobofhoikpldcahemfccffo |
आधिकारिक URL | https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo |
विवरण | Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab. |
फ़ाइल का आकार | 4.5 KB |
स्थापना संख्या | 21 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2017-07-27 |
प्रकाशन तिथि | 2017-07-27 |
डेवलपर | thekiteeatingtree |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/TheKiteEatingTree/TabKeys |
सहायता पृष्ठ URL | https://github.com/TheKiteEatingTree/TabKeys/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Keys", "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right" }, "description": "Select the next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left" }, "description": "Select the previous tab" }, "pin-tab": { "suggested_key": { "default": "Ctrl+Shift+P" }, "description": "Pin the current tab" } } } |