Tab Limiter And Restorer
Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space.
Tab Limiter And Restorer란 무엇입니까?
Tab Limiter And Restorer은(는) https://inzk.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space."입니다.
확장 프로그램 스크린샷
Tab Limiter And Restorer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension enables you to limit the number of tabs opened in a browser window. It will close tabs when you reach the limit and restore them when there is a space.
확장 프로그램 기본 정보
이름 | Tab Limiter And Restorer |
ID | ifhilckbhneppbcbpkimbgeahhijhdpj |
공식 URL | https://chromewebstore.google.com/detail/tab-limiter-and-restorer/ifhilckbhneppbcbpkimbgeahhijhdpj |
설명 | Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space. |
파일 크기 | 63.97 KB |
설치 횟수 | 693 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2022-06-02 |
출시 날짜 | 2020-06-17 |
평점 | 4.56/5 총 9 개의 평점 |
개발자 | https://inzk.dev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Limiter And Restorer", "version": "1.1.0", "description": "Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space.", "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "src\/utils\/utils.js", "src\/background\/storage.js", "src\/background\/on-tab-activated.js", "src\/background\/on-tab-event.js", "src\/background\/background.js" ], "persistent": true }, "browser_action": { "default_title": "Tab Limiter And Restorer", "default_popup": "src\/popup\/popup.html", "default_icon": { "16": "src\/assets\/icons\/icon-16.png", "19": "src\/assets\/icons\/icon-19.png", "24": "src\/assets\/icons\/icon-24.png", "32": "src\/assets\/icons\/icon-32.png", "38": "src\/assets\/icons\/icon-38.png", "48": "src\/assets\/icons\/icon-48.png" } }, "icons": { "16": "src\/assets\/icons\/icon-16.png", "19": "src\/assets\/icons\/icon-19.png", "24": "src\/assets\/icons\/icon-24.png", "32": "src\/assets\/icons\/icon-32.png", "38": "src\/assets\/icons\/icon-38.png", "48": "src\/assets\/icons\/icon-48.png", "128": "src\/assets\/icons\/icon-128.png" }, "manifest_version": 2 } |