EverTabs
Current tab is always moved to the far left such that tabs are sorted by recency by default
EverTabs란 무엇입니까?
EverTabs은(는) Eric Anderson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Current tab is always moved to the far left such that tabs are sorted by recency by default"입니다.
확장 프로그램 스크린샷
EverTabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension does two things: - Every time a tab is viewed for more than a second (or a user specified time), it moves to the far left. - If you have more than 10 (or a user specified amount of) tabs, the one furthest on the right is closed. This is meant to fit the same mental model as windows/apps on mobile and desktop (via tab selection) and allow you not to think about tabs at tall. The result is that tabs currently being worked with naturally and conveniently cluster together (on the left) and you are one intuitive step (cntl+tab) to get to last tab used. Tabs you aren't using end up on the right and eventually get closed. Pinned tabs still remain the furthest left (this moves the current tabs to the left of normal tabs and the right of pinned tabs). Future releases hopefully support a user specified max.
확장 프로그램 기본 정보
이름 | EverTabs |
ID | bphkmkgfjlmhmhgjcmlicimeelpgpjck |
공식 URL | https://chromewebstore.google.com/detail/evertabs/bphkmkgfjlmhmhgjcmlicimeelpgpjck |
설명 | Current tab is always moved to the far left such that tabs are sorted by recency by default |
파일 크기 | 6.51 KB |
설치 횟수 | 12 |
현재 버전 | 0.8 |
최근 업데이트 | 2019-08-01 |
출시 날짜 | 2019-08-01 |
개발자 | Eric Anderson |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "EverTabs", "version": "0.8", "description": "Current tab is always moved to the far left such that tabs are sorted by recency by default", "manifest_version": 2, "icons": { "128": "icon.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "128": "icon.png" }, "default_popup": "popup.html" }, "options_ui": { "page": "popup.html", "open_in_tab": false } } |