Tab Scissors
This extension splits a window into two at the selected tab.
什么是Tab Scissors?
Tab Scissors是由Tir开发的Chrome扩展程序,该扩展的主要功能是“This extension splits a window into two at the selected tab.”。
扩展截图
下载Tab Scissors扩展crx文件
下载Tab Scissors扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This simple tab organization tool divides one window into two.
If you have at least two tabs in the selected Chrome window, it will split that window into two smaller side-by-side windows. All the tabs on the left side of the selected tab will stay in the left window, and the rest will move to the window on the right.
It is especially helpful for those who have lots of tabs opened at a time.
This extension works great with Tab Glue (http://bit.ly/WjGnm7), which will glue all those pesky Chrome windows back together.
Version 1.2 Update: You can now also perform a glue or cut using a shortcut specified on the chrome extensions page. Default is Alt+S to cut, Alt+G to glue, Alt+A to glue all (including minimized windows) 扩展基本信息
| 名称 | |
| ID | cdochbecpfdpjobpgnacnbepkgcfhoek |
| 官方URL | https://chrome.google.com/webstore/detail/tab-scissors/cdochbecpfdpjobpgnacnbepkgcfhoek |
| 简介 | This extension splits a window into two at the selected tab. |
| 文件大小 | 10.6 KB |
| 安装次数 | 700,000 |
| 当前版本 | 1.2 |
| 更新时间 | 2013-10-06 |
| 上架时间 | 2013-10-06 |
| 评分 | 4.09/5 共205次评分 |
| 开发者 | Tir |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Scissors",
"description": "This extension splits a window into two at the selected tab.",
"version": "1.2",
"background": {
"scripts": [
"glueTabs.js",
"splitTabs.js"
],
"persistent": false
},
"permissions": [
"tabs"
],
"browser_action": {
"default_title": "Split @ selected tab",
"default_icon": "icon10.png"
},
"commands": {
"tab_scissor_cut": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Split at selected tab"
},
"tab_glue": {
"suggested_key": {
"default": "Alt+G"
},
"description": "Glue windows together"
},
"tab_glue_all": {
"suggested_key": {
"default": "Alt+A"
},
"description": "Glue windows together, including minimized windows"
}
},
"options_page": "options.html"
} | |