Deactivator
Sease all scripts activity on the page, thus saving CPU, memory, and network.
Qu'est-ce que Deactivator ?
Deactivator est une extension Chrome développée par Yury Ershov, et sa fonction principale est "Sease all scripts activity on the page, thus saving CPU, memory, and network.".
Télécharger le fichier CRX de l'extension Deactivator
Téléchargez les fichiers d'extension Deactivator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Deactivator |
ID | ikpbklpebmmpnjijokjmlapjhbekmbkm |
URL Officiel | https://chromewebstore.google.com/detail/deactivator/ikpbklpebmmpnjijokjmlapjhbekmbkm |
Description | Sease all scripts activity on the page, thus saving CPU, memory, and network. |
Taille du Fichier | 10.45 KB |
Nombre d'Installations | 47 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2017-05-02 |
Date de Publication | 2017-05-01 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | Yury Ershov |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |