History Cleaner

Deletes history older than a specified amount of days.

Τι είναι το History Cleaner;

Το History Cleaner είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rayquaza01, και η κύρια λειτουργία του είναι "Deletes history older than a specified amount of days.".

Στιγμιότυπα Επέκτασης

screenshot

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

Λήψη αρχείων επέκτασης History Cleaner σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Chrome extension that deletes history older than a specified amount of days.

=== Options ===

* Behavior
    * Decides what history the extension will delete when it triggers.
    * Either disabled, delete old history, or delete all history.
    * Defaults to disabled, so the extension doesn't do anything until you configure it.
* Number of Days to Keep History
    * Delete history older than midnight on the specified number of days ago.
    * Only has effect if behavior is set to delete old history.
    * Defaults to 0.
* Trigger Mode
    * Whether the extension triggers on idle, on browser startup, or at a set interval.
    * Defaults to idle.
* Idle Length
    * Amount of time in seconds the browser should idle before triggering.
    * Only has effect if trigger mode is set to idle.
    * Defaults to 60, minimum 15.
* Timer Interval
    * Interval in minutes between triggering.
    * Only has effect if trigger mode is set to timer.
    * Defaults to 1440 (24 hours), Minimum 1

=== Permissions ===

* `history`
    * Used to clear browser history
* `storage`
    * Used to save user options
* `idle`
    * Used to detect when the browser is idle for the idle trigger mode
* `notifications`
    * Used to send a notification when history is cleared
    * Notifications are only sent if the user enables notifications in options
* `alarms`
    * Used to set a timer for the timer trigger mode.

=== Acknowledgements ===

Icons used in History Cleaner are from Pictogrammers (https://pictogrammers.com/), formerly Material Design Icons. (Pictogrammers Free License, https://pictogrammers.com/docs/general/license/)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα History Cleaner History Cleaner
ID epoabannnmjdknejdggkgjoebomipene
Επίσημο URL https://chromewebstore.google.com/detail/history-cleaner/epoabannnmjdknejdggkgjoebomipene
Περιγραφή Deletes history older than a specified amount of days.
Μέγεθος Αρχείου 62.89 KB
Αριθμός Εγκαταστάσεων 558
Τρέχουσα Έκδοση 1.5.0
Τελευταία Ενημέρωση 2024-02-15
Ημερομηνία Δημοσίευσης 2020-12-30
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Rayquaza01
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Rayquaza01/HistoryCleaner
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Rayquaza01/HistoryCleaner/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "1.5.0",
    "description": "__MSG_extensionDescription__",
    "browser_specific_settings": {
        "gecko": {
            "id": "{a138007c-5ff6-4d10-83d9-0afaf0efbe5e}"
        }
    },
    "icons": {
        "96": "icons\/icon-96.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.bundle.js"
        ]
    },
    "permissions": [
        "history",
        "storage",
        "idle",
        "notifications",
        "alarms"
    ],
    "options_ui": {
        "page": "popup.html",
        "browser_style": true
    },
    "browser_action": {
        "default_icon": "icons\/icon-96.png",
        "default_popup": "popup.html"
    },
    "default_locale": "en_US"
}