Deactivator

Sease all scripts activity on the page, thus saving CPU, memory, and network.

Τι είναι το Deactivator;

Το Deactivator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yury Ershov, και η κύρια λειτουργία του είναι "Sease all scripts activity on the page, thus saving CPU, memory, and network.".

Λήψη αρχείου CRX της επέκτασης Deactivator

Λήψη αρχείων επέκτασης 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 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"
        }
    ]
}