Auto Clean

Cleans the history after every session.

What is Auto Clean?

Auto Clean is a Chrome extension developed by Yashwanth Remidi, and its main feature is "Cleans the history after every session.".

Extension Screenshots

screenshot

Download Auto Clean Extension CRX File

Download Auto Clean extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Auto Clean Auto Clean
ID bjoblfhgnefjjilpbhamhdgnmgpbhhjh
Official URL https://chrome.google.com/webstore/detail/auto-clean/bjoblfhgnefjjilpbhamhdgnmgpbhhjh
Description Cleans the history after every session.
File Size 58.28 KB
Installation Count 178
Current Version 1.1
Last Updated 2020-04-30
Publish Date 2020-04-29
Rating 4.00/5 Total 1 Ratings
Developer Yashwanth Remidi
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    }
}