New Tab Shortcut
Customize chrome shortcut to open a new tab
New Tab Shortcut क्या है?
New Tab Shortcut Stanley Guevara द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customize chrome shortcut to open a new tab"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में New Tab Shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simple extension for opening new tab by keyboard shortcut. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ahnndmdalhingohpcbkfpipelneigkij |
आधिकारिक URL | https://chromewebstore.google.com/detail/new-tab-shortcut/ahnndmdalhingohpcbkfpipelneigkij |
विवरण | Customize chrome shortcut to open a new tab |
फ़ाइल का आकार | 3.16 KB |
स्थापना संख्या | 36 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2016-10-16 |
प्रकाशन तिथि | 2016-10-16 |
डेवलपर | Stanley Guevara |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/stanleyguevara/chrome-new-tab-shortcut |
सहायता पृष्ठ URL | https://github.com/stanleyguevara/chrome-new-tab-shortcut |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "New Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to open a new tab", "commands": { "close-tab": { "suggested_key": { "default": "Alt+Z", "mac": "Ctrl+Z" }, "description": "Open a new tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |