Auto Clean

Cleans the history after every session.

Что такое Auto Clean?

Auto Clean - это расширение Chrome, разработанное Yashwanth Remidi, и его основная функция - "Cleans the history after every session.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Auto Clean

Скачайте файлы расширений Auto Clean в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Auto Clean Auto Clean
ID bjoblfhgnefjjilpbhamhdgnmgpbhhjh
Официальный URL https://chrome.google.com/webstore/detail/auto-clean/bjoblfhgnefjjilpbhamhdgnmgpbhhjh
Описание Cleans the history after every session.
Размер файла 58.28 KB
Количество установок 178
Текущая Версия 1.1
Последнее Обновление 2020-04-30
Дата публикации 2020-04-29
Рейтинг 4.00/5 Всего 1 оценок
Разработчик Yashwanth Remidi
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
        }
    }
}