History Manager

Manage your history better

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

Το History Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον XSpace, και η κύρια λειτουργία του είναι "Manage your history better".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        # Smart History
Smart History is a chrome extension about history management with pretty user interfaces. Besides basic operations, Smart History provides rich options to acquire a much more delicate searching and listing result.

# Features
- A popup window to show histories briefly by clicking the black feather icon.
- By clicking the "History" title on the popup window, there will be a main interface that can search, delete, hide and group local browser histories
- Search history records by both keyword and date
- Group local browser history records by domain name and hid some history records specified by the user to reduce
the redundancy of showing records significantly
- Highlight important websites where users executed “copy” operations
- Produced statistics about the hit rate and stay time of different websites with vivid charts                    

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

Όνομα History Manager History Manager
ID ifekbbngjjcachfekcpeejphmkeckged
Επίσημο URL https://chromewebstore.google.com/detail/history-manager/ifekbbngjjcachfekcpeejphmkeckged
Περιγραφή Manage your history better
Μέγεθος Αρχείου 648 KB
Αριθμός Εγκαταστάσεων 14,296
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2018-03-29
Ημερομηνία Δημοσίευσης 2018-03-29
Αξιολόγηση 3.13/5 Συνολικά 39 Αξιολογήσεις
Προγραμματιστής XSpace
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "History Manager",
    "version": "1.0",
    "short_name": "History",
    "description": "Manage your history better",
    "permissions": [
        "tabs",
        "history",
        "chrome:\/\/favicon\/",
        "storage",
        "bookmarks"
    ],
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": "imgs\/icon.png"
    },
    "chrome_url_overrides": {
        "history": "html\/history.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/jquery-3.1.1.min.js",
                "js\/copy_detect.js"
            ]
        }
    ],
    "manifest_version": 2
}