Active tabs
Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.
Active tabs란 무엇입니까?
Active tabs은(는) https://shaunsational.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows."입니다.
확장 프로그램 스크린샷
Active tabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Shows a count of total active tabs across all windows on the browser icon. When clicked a searchable list of all the tabs appears broken down by window (each window is collapsible). Clicking any tab will immediately focus that tab, even if it is minimized. You can also close individual tabs or entire windows from the list. You have to "Allow in incognito" on the manage extensions page to show incognito tabs, it will not show them by default. Updates - 1.2 - now adds a background to tabs playing audio, also searchable by using the keyword "audio" 1.3 - added keyboard shortcuts (open help by hitting ?), prefixed keywords with _ to help separate further. @shaunsational
확장 프로그램 기본 정보
이름 | Active tabs |
ID | pbihheplocihoglaokfdcjadbjlhijgb |
공식 URL | https://chromewebstore.google.com/detail/active-tabs/pbihheplocihoglaokfdcjadbjlhijgb |
설명 | Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows. |
파일 크기 | 50.87 KB |
설치 횟수 | 510 |
현재 버전 | 1.3.1 |
최근 업데이트 | 2018-11-06 |
출시 날짜 | 2018-11-06 |
평점 | 4.20/5 총 5 개의 평점 |
개발자 | https://shaunsational.github.io |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://shaunsational.github.io/extensions#active-tabs |
도움말 페이지 URL | https://github.com/shaunsational/chrome-ext-ActiveTabs/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Active tabs", "description": "Shows total active tabs, shows a searchable list of all tabs, jump immediately to a tab, allows for closing tabs and windows.", "version": "1.3.1", "icons": { "16": "assets\/icon.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "browser_action": { "default_icon": { "16": "assets\/icon.png", "48": "assets\/icon_48.png" }, "default_title": "Active tabs", "default_popup": "popup.htm" }, "permissions": [ "*:\/\/*\/", "chrome:\/\/favicon\/", "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |