Sloth
Automatically discards all tabs at startup, before they load, reducing memory footprint and unnecessary bandwidth usage.
Sloth란 무엇입니까?
Sloth은(는) HRJ에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically discards all tabs at startup, before they load, reducing memory footprint and unnecessary bandwidth usage."입니다.
확장 프로그램 스크린샷
Sloth 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
An open-source and light-weight chrome / chromium extension which ensures that tabs are lazily loaded. Source code: https://github.com/hrj/sloth Requires Chrome 54+. ## How it works This plugin uses the discard API available since Chrome 54. All tabs except new tabs or "special" tabs are discarded. Discarded tabs are visible in the tab bar, but not loaded from the network nor kept in memory. If a window doesn't have a new tab, it is created and activated. This prevents any tab from loading during startup, unless you explicitly select it. Special tabs are those with chrome:// URLs, for example. Note: Where there are hundreds of tabs open in the session, a couple of them sneak through and become active. This limitation is due to the design of the browser. See https://github.com/hrj/sloth/issues/1. ## History / Credits I found an extension called Native Lazy Tabs here. It was distributed under the GPL license. I adapted it and added the "new tab" feature. The icon is by Jaime Serra, distributed under the CC license.
확장 프로그램 기본 정보
이름 | Sloth |
ID | filkeckmpdjogddcamkafnekhgfaehkc |
공식 URL | https://chromewebstore.google.com/detail/sloth/filkeckmpdjogddcamkafnekhgfaehkc |
설명 | Automatically discards all tabs at startup, before they load, reducing memory footprint and unnecessary bandwidth usage. |
파일 크기 | 25.24 KB |
설치 횟수 | 2,377 |
현재 버전 | 0.5 |
최근 업데이트 | 2019-08-27 |
출시 날짜 | 2019-08-27 |
평점 | 4.33/5 총 24 개의 평점 |
개발자 | HRJ |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/hrj/sloth/ |
도움말 페이지 URL | https://github.com/hrj/sloth/issues |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sloth", "short_name": "Sloth", "description": "Automatically discards all tabs at startup, before they load, reducing memory footprint and unnecessary bandwidth usage.", "version": "0.5", "permissions": [ "tabs" ], "background": { "scripts": [ "js\/eventPage.js" ], "persistent": false }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" } }, "incognito": "not_allowed", "manifest_version": 2, "minimum_chrome_version": "54", "options_ui": { "page": "html\/options.html", "chrome_style": true } } |