Auto Clean

Cleans the history after every session.

O que é Auto Clean?

Auto Clean é uma extensão do Chrome desenvolvida por Yashwanth Remidi, e sua principal característica é "Cleans the history after every session.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Auto Clean

Baixe arquivos de extensão Auto Clean 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

                        Auto Cleans the complete browsing history when you close the chrome window. Caution: It removes the complete history. It also counts the number of saved history urls in the memory and displays the number. Please only install if you want to keep deleting your history in normal mode. I built it for personal use where I want every session cleared when I close the chrome window.  This feature is available by default in Firefox, I just tried to replicate it. Thanks for your support. 

Caution(again): Only use in dev mode please.                    

Informações Básicas da Extensão

Nome Auto Clean Auto Clean
ID bjoblfhgnefjjilpbhamhdgnmgpbhhjh
URL Oficial https://chrome.google.com/webstore/detail/auto-clean/bjoblfhgnefjjilpbhamhdgnmgpbhhjh
Descrição Cleans the history after every session.
Tamanho do Arquivo 58.28 KB
Contagem de Instalações 178
Versão Atual 1.1
Última Atualização 2020-04-30
Data de Publicação 2020-04-29
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor Yashwanth Remidi
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Clean",
    "description": "Cleans the history after every session.",
    "version": "1.1",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "history",
        "browsingData"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "128": "images\/icon512.png"
    },
    "browser_action": {
        "default_title": "Auto Clean",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "128": "images\/icon512.png"
        }
    }
}