The Great Discarder
Automatically discards unused tabs to free up system resources
The Great Discarder란 무엇입니까?
The Great Discarder은(는) suspensionlabs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically discards unused tabs to free up system resources"입니다.
확장 프로그램 스크린샷
The Great Discarder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Suspend tabs to reduce chrome memory usage. Uses chrome's native tab discarding. Advantages over The Great Suspender: - More memory savings - Compatible with chrome tab syncing - Super lightweight extension that uses no content scripts or persistent background scripts Disadvantages over The Great Suspender: - No visibility on which tabs have been suspended - Unable to prevent a tab from reloading when it gains focus Please post all bug reports here: https://github.com/deanoemcke/thegreatdiscarder/issues
확장 프로그램 기본 정보
이름 | |
ID | jlipbpadkjcklpeiajndiijbeieicbdh |
공식 URL | https://chrome.google.com/webstore/detail/jlipbpadkjcklpeiajndiijbeieicbdh |
설명 | Automatically discards unused tabs to free up system resources |
파일 크기 | 235 KB |
설치 횟수 | 35,894 |
현재 버전 | 0.1.2 |
최근 업데이트 | 2017-06-08 |
출시 날짜 | 2017-06-08 |
평점 | 4.27/5 총 133 개의 평점 |
개발자 | suspensionlabs |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "The Great Discarder", "description": "Automatically discards unused tabs to free up system resources", "version": "0.1.2", "permissions": [ "tabs", "storage", "unlimitedStorage", "contextMenus", "alarms", "system.memory" ], "background": { "scripts": [ "js\/db.js", "js\/storage.js", "js\/tabStates.js", "js\/eventPage.js" ], "persistent": false }, "content_scripts": [], "browser_action": { "default_title": "The Great Discarder", "default_icon": "img\/icon19.png", "default_popup": "html\/popup.html" }, "options_page": "html\/options.html", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "incognito": "split", "manifest_version": 2, "minimum_chrome_version": "54", "commands": { "1-discard-tab": { "description": "Discard active tab", "suggested_key": { "default": "Ctrl+Shift+S" } }, "3-discard-active-window": { "description": "Discard all tabs in active window" }, "4-reload-active-window": { "description": "Reload all tabs in active window" }, "5-discard-all-windows": { "description": "Discard all tabs in all windows" }, "6-reload-all-windows": { "description": "Reload all tabs in all windows" } } } |