Deactivator
Sease all scripts activity on the page, thus saving CPU, memory, and network.
Deactivator란 무엇입니까?
Deactivator은(는) Yury Ershov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sease all scripts activity on the page, thus saving CPU, memory, and network."입니다.
Deactivator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Super-lightweight page deactivator in one click. Tired of a webpage, sucking your CPU in the background? But there is something useful in it so you'd like to keep it open? Deactivate the web page! Cease all scripts activity on the current page, thus saving CPU, memory, and network. Also, overall page responsiveness improves making if feel faster. Works somewhat similar to 'Tab Suspender' but leaves the whole page accessible, just removing all active components and hidden scripts. In contrast to NoScript-like extensions, works only on demand. To activate, just click on the extension icon. TODO: * Draw a fancy icon * Automatic preventive activity suppressor based on black/white lists
확장 프로그램 기본 정보
이름 | Deactivator |
ID | ikpbklpebmmpnjijokjmlapjhbekmbkm |
공식 URL | https://chromewebstore.google.com/detail/deactivator/ikpbklpebmmpnjijokjmlapjhbekmbkm |
설명 | Sease all scripts activity on the page, thus saving CPU, memory, and network. |
파일 크기 | 10.45 KB |
설치 횟수 | 47 |
현재 버전 | 1.0 |
최근 업데이트 | 2017-05-02 |
출시 날짜 | 2017-05-01 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | Yury Ershov |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Deactivator", "short_name": "Deactivate page", "version": "1.0", "description": "Sease all scripts activity on the page, thus saving CPU, memory, and network.", "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_title": "Sease all activity" }, "background": { "scripts": [ "common.js", "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "install_handlers.js" ], "run_at": "document_start" } ] } |