Tab Organizer
Organizes and Rearranges tabs by URL.
Tab Organizer란 무엇입니까?
Tab Organizer은(는) Devin Soni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Organizes and Rearranges tabs by URL."입니다.
확장 프로그램 스크린샷
Tab Organizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
*** FEATURED ON PRODUCT HUNT AND LIFEHACKER *** Organizes the unpinned tabs in the current window by grouping them by URL. Tabs from the same base URL (the same website) will be grouped together, and groups will be made in the order that the first tab from that group appears in the original order. Use the extension by clicking its button, and it will rearrange the tabs in the current window, ignoring any pinned tabs. * * * NEW IN VERSION 1.0: * * * * Options page to manage settings * Automatically sort tabs every 5, 30, or 60 minutes. * Keyboard shortcut "Ctrl + Shift + A" to sort on command.
확장 프로그램 기본 정보
이름 | Tab Organizer |
ID | kkcbifggchajpkagcpagenpfghbplghc |
공식 URL | https://chromewebstore.google.com/detail/tab-organizer/kkcbifggchajpkagcpagenpfghbplghc |
설명 | Organizes and Rearranges tabs by URL. |
파일 크기 | 8.1 KB |
설치 횟수 | 6,272 |
현재 버전 | 1.0 |
최근 업데이트 | 2016-05-12 |
출시 날짜 | 2016-05-11 |
평점 | 4.43/5 총 37 개의 평점 |
개발자 | Devin Soni |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Organizer", "version": "1.0", "manifest_version": 2, "description": "Organizes and Rearranges tabs by URL.", "background": { "persistent": true, "scripts": [ "bg.js", "options.js" ] }, "permissions": [ "tabs", "storage" ], "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png" }, "commands": { "activate": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Activate sorting" } }, "options_page": "options.html" } |