Tab Switcher
'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE *
Tab Switcher là gì?
Tab Switcher là một tiện ích mở rộng Chrome được phát triển bởi supa sympa, và tính năng chính của nó là "'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE *".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Tab Switcher
Tải xuống các tệp mở rộng Tab Switcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | aefpepbidagmonnpdeokjljpmkbbhiee |
URL Chính Thức | https://chrome.google.com/webstore/detail/tab-switcher/aefpepbidagmonnpdeokjljpmkbbhiee |
Mô tả | 'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE * |
Kích Thước Tệp | 16.19 KB |
Số Lần Cài Đặt | 147 |
Phiên Bản Hiện Tại | 0.1.9 |
Cập Nhật Lần Cuối | 2014-05-29 |
Ngày Phát Hành | 2014-05-29 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | supa sympa |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://bitbucket.org/barclaycodes/chrome-tab-switcher/wiki/Home |
URL Trang Trợ Giúp | https://bitbucket.org/barclaycodes/chrome-tab-switcher/wiki/Home |
Ngôn Ngữ Được Hỗ Trợ | 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\/", " |