Tab freezer: tab suspender for faster device
Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!
Tab freezer: tab suspender for faster device란 무엇입니까?
Tab freezer: tab suspender for faster device은(는) https://digit.st에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!"입니다.
확장 프로그램 스크린샷
Tab freezer: tab suspender for faster device 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Save resources, freeze unused tabs! Automatically suspend inactive tabs to save up to 90% of your computer's memory and keep it running fast! Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser, preventing overheating and keeping your device running fast and cool 😉 When you have many open tabs at the same time, your browser needs to keep their data in memory and background scripts are always running. Using Tab Freezer you’ll suspend this tabs so they don’t waste memory, battery or any kind of resources at all. Is your computer slow and constantly crashing? Avoid all that and increase your productivity working from a faster and more efficient device. With this extension you’ll be able to reopen suspended tabs with just one click, so you just let them freeze and whenever you need them *click* and you got all your work back without any waste during the process. It takes an easy and quick install and it will start freezing every new tab opened after the download ;)
확장 프로그램 기본 정보
이름 | Tab freezer: tab suspender for faster device |
ID | diikknkcdngdedlicmnlfkoedlodolon |
공식 URL | https://chromewebstore.google.com/detail/tab-freezer-tab-suspender/diikknkcdngdedlicmnlfkoedlodolon |
설명 | Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser! |
파일 크기 | 403 KB |
설치 횟수 | 212 |
현재 버전 | 1.2 |
최근 업데이트 | 2021-03-08 |
출시 날짜 | 2021-02-27 |
평점 | 4.00/5 총 5 개의 평점 |
개발자 | https://digit.st |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://digit.st/ |
도움말 페이지 URL | https://digit.st/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab freezer: tab suspender for faster device", "version": "1.2", "manifest_version": 2, "description": "Tab Freezer will hibernate tabs that have not been used in the last 5 minutes, reducing memory and battery use from your browser!", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "exclude_globs": [ "https:\/\/meet.google.com\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js", "html2canvas.min.js" ] } ], "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "browser_action": { "default_title": "Tab Freezer", "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "background.js" ] } } |