Deactivator

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

O que é Deactivator?

Deactivator é uma extensão do Chrome desenvolvida por Yury Ershov, e sua principal característica é "Sease all scripts activity on the page, thus saving CPU, memory, and network.".

Baixar o arquivo CRX da Extensão Deactivator

Baixe arquivos de extensão Deactivator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Deactivator Deactivator
ID ikpbklpebmmpnjijokjmlapjhbekmbkm
URL Oficial https://chromewebstore.google.com/detail/deactivator/ikpbklpebmmpnjijokjmlapjhbekmbkm
Descrição Sease all scripts activity on the page, thus saving CPU, memory, and network.
Tamanho do Arquivo 10.45 KB
Contagem de Instalações 47
Versão Atual 1.0
Última Atualização 2017-05-02
Data de Publicação 2017-05-01
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Yury Ershov
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}