Simple Tab Switcher
A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.
Simple Tab Switcher क्या है?
Simple Tab Switcher JmQu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Simple Tab Switcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A FREE and SIMPLE tab switcher which enables a shortcut to switch the current tab to previous one. In addition, an extra shortcut to switch the current tab across different windows is also available. - The default shortcut to switch tabs is [Alt + q] (Option + q) on MacOs. - The default shortcut to switch windows is [Alt + w] (Option + w) on MacOs. *P.S.* You can change it through the *chrome://extensions/shortcuts*. It is open source at https://github.com/SanCoder-Q/tab-switcher
एक्सटेंशन की मूल जानकारी
नाम | |
ID | jmihjpkeaeknejefhonkbgldenaplegj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/simple-tab-switcher/jmihjpkeaeknejefhonkbgldenaplegj |
विवरण | A Chrome tab switcher which enables a shortcut to switch the current tab to latest one. |
फ़ाइल का आकार | 24.19 KB |
स्थापना संख्या | 62 |
वर्तमान संस्करण | 0.2.1 |
अंतिम अपडेट | 2022-09-24 |
प्रकाशन तिथि | 2019-03-04 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | JmQu |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/SanCoder-Q/tab-switcher |
सहायता पृष्ठ URL | https://github.com/SanCoder-Q/tab-switcher |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Tab Switcher", "description": "A Chrome tab switcher which enables a shortcut to switch the current tab to latest one.", "version": "0.2.1", "icons": { "16": "resources\/90.png", "48": "resources\/90.png", "128": "resources\/128.png" }, "browser_action": { "default_icon": { "16": "resources\/90.png", "48": "resources\/90.png", "128": "resources\/128.png" } }, "background": { "scripts": [ "bundle.min.js" ] }, "commands": { "switchTab": { "suggested_key": { "default": "Alt+Q" }, "description": "Switch to recent tab" }, "moveTabCrossWindow": { "suggested_key": { "default": "Alt+W" }, "description": "Move current tab to next window" } }, "permissions": [ "storage", "commands", "tabs" ], "content_security_policy": "script-src 'self'; object-src 'self'", "homepage_url": "https:\/\/github.com\/SanCoder-Q\/tab-switcher" } |