Fast Tab Switcher
Easily find and close tabs!
Fast Tab Switcher क्या है?
Fast Tab Switcher https://ronsatech.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily find and close tabs!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fast Tab Switcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Many of us tend to open so many Chrome Tab then get lost somewhere when we want to get back to previously opened tab. We created this Extension out of genuine concern from many user and web developers. Now you simply press Alt+T (Cmd+E on Mac) to launch Tab Switcher and quickly search for desired tab and press Enter. You can also use Up/Down arrow keys to navigate through tabs. If there is a clash on keyboard shortcut then you can assign any key of your interest by navigating to chrome://extensions/shortcuts This is initial version, we have long list of improvements planned for this extension. If you any suggestion or idea to make it more useful for you then please leave a Support Message or write us Email at [email protected]
एक्सटेंशन की मूल जानकारी
नाम | Fast Tab Switcher |
ID | idkpmchlhfanmhckfmfpkjnnpifolcpk |
आधिकारिक URL | https://chromewebstore.google.com/detail/fast-tab-switcher/idkpmchlhfanmhckfmfpkjnnpifolcpk |
विवरण | Easily find and close tabs! |
फ़ाइल का आकार | 17.06 KB |
स्थापना संख्या | 40 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2020-01-07 |
प्रकाशन तिथि | 2020-01-07 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://ronsatech.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fast Tab Switcher", "version": "0.0.1", "description": "Easily find and close tabs!", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "activeTab", "declarativeContent" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/tab_search_16.png", "32": "images\/tab_search_32.png", "48": "images\/tab_search_48.png", "128": "images\/tab_search_128.png" } }, "commands": { "_execute_page_action": { "suggested_key": { "default": "Alt+T", "mac": "Command+E" } } }, "icons": { "16": "images\/tab_search_16.png", "32": "images\/tab_search_32.png", "48": "images\/tab_search_48.png", "128": "images\/tab_search_128.png" } } |