New Adjacent Tab
Opens a new tab to the right or left of the current one.
New Adjacent Tab क्या है?
New Adjacent Tab https://www.adelsaoud.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Opens a new tab to the right or left of the current one."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में New Adjacent Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Developed exclusively for Chrome. This extension is not guaranteed to work with other Chromium-based browsers like Edge, Brave, Opera, etc... Please don't report issues or down-vote this extension in the Chrome Web Store if you're using a non-Chrome browser. New Adjacent Tab allows you to open tabs to the right/left through keyboard shortcuts, the context menu, and the extension's icon. All settings are configurable and are automatically synced across your devices if you're signed in to Google Chrome. The default keyboard shortcuts are: - Alt+T to open a new tab to the right of the current one. - Alt+H to open a new tab to the left of the current one.
एक्सटेंशन की मूल जानकारी
नाम | New Adjacent Tab |
ID | fommpldicogfgegfpcoibmhkbbdpodjg |
आधिकारिक URL | https://chromewebstore.google.com/detail/new-adjacent-tab/fommpldicogfgegfpcoibmhkbbdpodjg |
विवरण | Opens a new tab to the right or left of the current one. |
फ़ाइल का आकार | 10.7 KB |
स्थापना संख्या | 7,266 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2023-09-14 |
प्रकाशन तिथि | 2019-09-23 |
रेटिंग | 4.90/5 कुल 41 रेटिंग्स |
डेवलपर | https://www.adelsaoud.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.adelsaoud.com/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "New Adjacent Tab", "version": "1.0.2", "description": "Opens a new tab to the right or left of the current one.", "permissions": [ "contextMenus", "storage" ], "background": { "service_worker": "background.js" }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "action": [], "options_ui": { "page": "options.html" }, "commands": { "newTabToTheRight": { "suggested_key": { "default": "Alt+T" }, "description": "New tab to the right" }, "newTabToTheLeft": { "suggested_key": { "default": "Alt+H" }, "description": "New tab to the left" } } } |