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 |
官方網址 | 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" } ] } |