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ファイルをダウンロード
Deactivator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } ] } |