Previous Tab
Switch back to the previously active tab using the keyboard.
Previous Tab क्या है?
Previous Tab previoustab.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switch back to the previously active tab using the keyboard."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Previous Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Switch to the previously active tab (last tab) by pressing Ctrl+Q, or clicking the Previous Tab icon. You can change the keyboard shortcut by visiting chrome://extensions/shortcuts . Previous Tab does not require any permissions to install and use. Chrome does not allow any extensions to use Ctrl+Tab or Ctrl+` as keyboard shortcuts. The supported keys are Alt, Ctrl, Cmd along with: A-Z, 0-9, Comma, Period, Home, End, PageUp, PageDown, Space, Insert, Delete, Arrow keys (Up, Down, Left, Right) and the Media Keys (MediaNextTrack, MediaPlayPause, MediaPrevTrack, MediaStop). Donations are appreciated at donate.previoustab.com
एक्सटेंशन की मूल जानकारी
नाम | Previous Tab |
ID | bjaniflnlhhofabpoamhnobeonjcjjpl |
आधिकारिक URL | https://chromewebstore.google.com/detail/previous-tab/bjaniflnlhhofabpoamhnobeonjcjjpl |
विवरण | Switch back to the previously active tab using the keyboard. |
फ़ाइल का आकार | 468 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2022-11-12 |
प्रकाशन तिथि | 2020-02-28 |
रेटिंग | 4.84/5 कुल 97 रेटिंग्स |
डेवलपर | previoustab.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Previous Tab", "description": "Switch back to the previously active tab using the keyboard.", "version": "1.0.2", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "commands": { "switch-to-previously-active-tab": { "description": "Switch back to the previously active tab", "suggested_key": { "default": "Ctrl+Q", "mac": "MacCtrl+Q" } } }, "browser_action": { "default_icon": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } } |