Manage My Tabs - Tab Manager
Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.
Manage My Tabs - Tab Manager란 무엇입니까?
Manage My Tabs - Tab Manager은(는) aadair에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs."입니다.
확장 프로그램 스크린샷
Manage My Tabs - Tab Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs. Tabs are grouped by website name and are shown in one convenient tab that the user may search and customize. From the manager tab, the user can navigate to any tab, close tabs individually or by groups and view tabs from other windows. Features: - Groups tabs by website hostname - Lists tab groups and tabs alphabetically or numerically - Search for tab or tab group - Close tabs individually or by group - Navigate to tabs - Auto updates when tabs are opened or closed - Undo button to reopen the last tab that was closed (Ctrl + Z) Settings: - Change number of columns - Restore default settings button - Display number of tabs per group - Get tabs from all windows - Select which window to get tabs from - Sort options - Search by tabs or website name
확장 프로그램 기본 정보
이름 | Manage My Tabs - Tab Manager |
ID | jbhejjmjopbmikcoffcckcnbaiohgbge |
공식 URL | https://chromewebstore.google.com/detail/manage-my-tabs-tab-manage/jbhejjmjopbmikcoffcckcnbaiohgbge |
설명 | Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs. |
파일 크기 | 1.17 MB |
설치 횟수 | 3,815 |
현재 버전 | 0.4.0 |
최근 업데이트 | 2019-03-05 |
출시 날짜 | 2019-03-05 |
평점 | 4.38/5 총 13 개의 평점 |
개발자 | aadair |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://adamjamesadair.github.io/manage-my-tabs/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Manage My Tabs - Tab Manager", "description": "Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.", "version": "0.4.0", "browser_action": { "default_icon": "images\/icons\/icon128.png" }, "icons": { "16": "images\/icons\/icon16.png", "48": "images\/icons\/icon48.png", "128": "images\/icons\/icon128.png" }, "permissions": [ "tabs", "activeTab", "storage", "clipboardWrite" ], "background": { "scripts": [ "scripts\/src\/bg.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+M", "mac": "Alt+M" } } }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "scripts\/lib\/jquery\/jquery-3.3.1.min.js", "scripts\/lib\/jquery\/jquery-ui.js" ] } ] } |