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开发的Chrome扩展程序,该扩展的主要功能是“'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE *”。
扩展截图
下载Tab Switcher扩展crx文件
下载Tab Switcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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\/",
" | |