Tab Switcher
'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE *
Tab Switcher क्या है?
Tab Switcher supa sympa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE *"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Switcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
I like using Chrome with keyboard shortcuts and I like using Chrome in presentation mode. I wasn't too happy with the built in options for flicking through tabs baked into the browser. So I built this extension to offer an OS like keyboard driven tab switcher, in the window of your Chrome browser. Press a key shortcut to navigate to your next tab, press a key shortcut to navigate to you previous tab. Great tool for full screen (presentation mode) browsing, no toolbars, tab navigation right in your web window!
एक्सटेंशन की मूल जानकारी
नाम | |
ID | aefpepbidagmonnpdeokjljpmkbbhiee |
आधिकारिक URL | https://chrome.google.com/webstore/detail/tab-switcher/aefpepbidagmonnpdeokjljpmkbbhiee |
विवरण | 'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE * |
फ़ाइल का आकार | 16.19 KB |
स्थापना संख्या | 147 |
वर्तमान संस्करण | 0.1.9 |
अंतिम अपडेट | 2014-05-29 |
प्रकाशन तिथि | 2014-05-29 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | supa sympa |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://bitbucket.org/barclaycodes/chrome-tab-switcher/wiki/Home |
सहायता पृष्ठ URL | https://bitbucket.org/barclaycodes/chrome-tab-switcher/wiki/Home |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.1.9", "manifest_version": 2, "description": "__MSG_appDescription__", "homepage_url": "https:\/\/bitbucket.org\/barclaycodes\/chrome-tab-switcher\/wiki\/Home", "offline_enabled": true, "options_page": "options.html", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "styles\/main.css" ], "js": [ "scripts\/client-scripts\/app.js" ], "run_at": "document_end", "all_frames": false } ], "commands": { "nextTab": { "suggested_key": { "windows": "Alt+N", "mac": "Alt+N", "chromeos": "Alt+N", "linux": "Alt+N" }, "description": "Next tab in window" }, "previousTab": { "suggested_key": { "windows": "Alt+P", "mac": "Alt+P", "chromeos": "Alt+P", "linux": "Alt+P" }, "description": "Previous tab in window" } }, "permissions": [ "windows", "tabs", "storage", "chrome:\/\/favicon\/", " |