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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |