Deactivator
Sease all scripts activity on the page, thus saving CPU, memory, and network.
Vad är Deactivator?
Deactivator är en Chrome-tillägg utvecklad av Yury Ershov, och dess huvudfunktion är "Sease all scripts activity on the page, thus saving CPU, memory, and network.".
Ladda ner Deactivator-förlängningens CRX-fil
Ladda ner Deactivator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Deactivator |
ID | ikpbklpebmmpnjijokjmlapjhbekmbkm |
Officiell webbadress | https://chromewebstore.google.com/detail/deactivator/ikpbklpebmmpnjijokjmlapjhbekmbkm |
Beskrivning | Sease all scripts activity on the page, thus saving CPU, memory, and network. |
Filstorlek | 10.45 KB |
Antal Installationer | 47 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2017-05-02 |
Publiceringsdatum | 2017-05-01 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | Yury Ershov |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } ] } |