Tree Style Tab
A tree style tab navigator
Tree Style Tab란 무엇입니까?
Tree Style Tab은(는) xingtanzjr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tree style tab navigator"입니다.
확장 프로그램 스크린샷
Tree Style Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🚀【New-Feature】: 🔍 Quick Search. If no tab is selected, pressing `ENTER` can search the keyword on the Internet directly! 【Shrot-cut】: • Alt+Q : Open Tab-Tree. (You can also set your own shortcut for that) • ↑ (Arrow-up): move to previous tab • ↓ (Arrow-down):move to next tab • ⏎ (Enter): switch to selected tab. If no tab is selected, it will search the keyword on the Internet • Alt + w: close all sub tabs for selected tab 【Introduction】: Tab-Tree is aimed to solve a very simple but annoying problem, that is, how to switch to the tab you want quickly if your window opened lots of tabs. What Tab-Tree different from others is that Tab-Tree gives a tree-style list for tabs. This tree separates all tabs into different groups by the relationship between the child-tab and their parent-tab, which gives you a better insight for all the tabs. All the tabs opened by same tab will become the children of the tab which opens them. 【Other Features】: • Search: search all opened tabs by keyword. • Bookmarks: search your bookmarks and open the bookmark in a new tab quickly. 【NOTICE】: Tabs which was opened before installing this extension could not be showed in a tree view.
확장 프로그램 기본 정보
이름 | Tree Style Tab |
ID | oicakdoenlelpjnkoljnaakdofplkgnd |
공식 URL | https://chromewebstore.google.com/detail/tree-style-tab/oicakdoenlelpjnkoljnaakdofplkgnd |
설명 | A tree style tab navigator |
파일 크기 | 374 KB |
설치 횟수 | 34,374 |
현재 버전 | 1.4.0 |
최근 업데이트 | 2023-07-04 |
출시 날짜 | 2020-05-28 |
평점 | 3.85/5 총 73 개의 평점 |
개발자 | xingtanzjr |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tree Style Tab", "short_name": "Tab Tree", "version": "1.4.0", "description": "A tree style tab navigator", "permissions": [ "bookmarks", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Alt + Q", "default_popup": "index.html", "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Alt+Q", "mac": "Alt+Q", "linux": "Alt+Q", "chromeos": "Alt+Q" } } }, "manifest_version": 2 } |