Open New Tab Here
A shortcut to open a new tab next to the current one
Open New Tab Here क्या है?
Open New Tab Here Gilmore Davidson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A shortcut to open a new tab next to the current one"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Open New Tab Here एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
By default, Chrome will only open a new tab at the very end of the row of tabs, which isn’t always what you want. This is a quick shortcut to open a new tab to the right of the one you’re currently viewing. You can either use the button to the right of the address bar, or a configurable keyboard shortcut. The default keyboard shortcut is: • For Windows & Linux: Alt + T • For macOS: Ctrl + T There is also a shortcut to open the new tab in the background instead of switching to it straight away: • For Windows & Linux: Alt + Shift + T • For macOS: Ctrl + Shift + T You can change these shortcuts by going to chrome://extensions/shortcuts The code is open source at https://github.com/gilmoreorless/chrome-new-tab-here
एक्सटेंशन की मूल जानकारी
नाम | Open New Tab Here |
ID | kpoogeanhkgkbkagbgeibbokbjdbjodb |
आधिकारिक URL | https://chromewebstore.google.com/detail/open-new-tab-here/kpoogeanhkgkbkagbgeibbokbjdbjodb |
विवरण | A shortcut to open a new tab next to the current one |
फ़ाइल का आकार | 15.7 KB |
स्थापना संख्या | 688 |
वर्तमान संस्करण | 1.1.0 |
अंतिम अपडेट | 2021-04-14 |
प्रकाशन तिथि | 2017-07-11 |
रेटिंग | 4.76/5 कुल 21 रेटिंग्स |
डेवलपर | Gilmore Davidson |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/gilmoreorless/chrome-new-tab-here |
सहायता पृष्ठ URL | https://github.com/gilmoreorless/chrome-new-tab-here/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open New Tab Here", "short_name": "New Tab Here", "version": "1.1.0", "description": "A shortcut to open a new tab next to the current one", "manifest_version": 2, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "64": "icons\/icon-64.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png" }, "background": { "scripts": [ "listener.js" ] }, "browser_action": { "default_title": "Open a new tab next to the current one" }, "commands": { "new-tab-here": { "suggested_key": { "default": "Alt+T", "mac": "MacCtrl+T" }, "description": "Open a new tab next to the current one" }, "new-tab-here-background": { "suggested_key": { "default": "Alt+Shift+T", "mac": "MacCtrl+Shift+T" }, "description": "Open a new tab in the background next to the current one" } } } |