Tab Application Switcher
Application switcher for Browser tabs
Tab Application Switcher क्या है?
Tab Application Switcher https://mckinley.github.io/tab-application-switcher द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Application switcher for Browser tabs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Application Switcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Tab Application Switcher (TAS) It's like your system's Application Switcher, but for your Chrome tabs: - Tabs can be accessed with intelligent and configurable keyboard shortcuts, very similar to your operating system's application switcher. - Tabs are ordered by their last use. The last tab you used is the first tab to select. Additional features to help you find and access your tabs: - Tabs can be searched by url and page title. - Access your tabs in the chrome omnibox by typing 'tas' then tab. - Display appears in your current active window when using the keyboard shortcut. It is also available as an extension action in the chrome menu area. Default keyboard shortcuts: - The current window must have focus to use keyboard shortcuts. - Hold alt and press tab to activate TAS. - Continue holding alt, and press tab again to move forward through the list of tabs. - Continue holding alt, and press ` to move backward through the list of tabs. - Release alt to select the highlighted tab. Additional commands: - Use the up and down arrows to move through the list of tabs. - Press enter to select the highlighted tab. - Press esc to close TAS without making a selection.
एक्सटेंशन की मूल जानकारी
नाम | Tab Application Switcher |
ID | mfcjanplaceclfoipcengelejgfngcan |
आधिकारिक URL | https://chromewebstore.google.com/detail/tab-application-switcher/mfcjanplaceclfoipcengelejgfngcan |
विवरण | Application switcher for Browser tabs |
फ़ाइल का आकार | 1.26 MB |
स्थापना संख्या | 39 |
वर्तमान संस्करण | 0.0.9 |
अंतिम अपडेट | 2021-04-28 |
प्रकाशन तिथि | 2019-09-27 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://mckinley.github.io/tab-application-switcher |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://mckinley.github.io/tab-application-switcher/ |
सहायता पृष्ठ URL | https://github.com/mckinley/tab-application-switcher |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_app_name__", "short_name": "__MSG_app_short_name__", "version": "0.0.9", "manifest_version": 2, "description": "__MSG_app_description__", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "background", "tabs", "storage", "chrome:\/\/favicon\/*" ], "options_ui": { "chrome_style": true, "page": "options.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "match_about_blank": true, "js": [ "scripts\/content.js" ] } ], "web_accessible_resources": [ "styles\/main.css", "fonts\/RobotoTTF\/Roboto-Regular.ttf" ], "omnibox": { "keyword": "tas" }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "Tab Application Switcher", "default_popup": "popup.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Z" } }, "activate": { "suggested_key": { "default": "Alt+Tab" }, "description": "Activate Tab Application Switcher" } } } |