WebHistory

Show graphical web page history

Was ist WebHistory?

WebHistory ist eine Chrome-Erweiterung, die von d3v.one entwickelt wurde, und ihr Hauptmerkmal ist "Show graphical web page history".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

WebHistory-Erweiterungs-CRX-Datei herunterladen

Laden Sie WebHistory-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This chrome extension creates a searchable graphical history of all your web page visits for a configurable number of days in the past. You can continuously adjust the size of the thumbnails shown and live search page titles, URLs, descriptions, and keywords. The extension  groups successive page entries of the same host by default. If you don't want some pages to appear in the history, you can blackhist hosts. As an additional benefit, you can bookmark every page in your history and show a QRCode of the page URL for easy transfer to your phone or tablet.                    

Grundlegende Informationen zur Erweiterung

Name WebHistory WebHistory
ID ffcejpomofjkbfgmeelecmfhhckmaegp
Offizielle URL https://chromewebstore.google.com/detail/webhistory/ffcejpomofjkbfgmeelecmfhhckmaegp
Beschreibung Show graphical web page history
Dateigröße 1.01 MB
Installationsanzahl 113
Aktuelle Version 1.0.4
Letztes Update 2023-03-01
Veröffentlichungsdatum 2019-02-25
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler d3v.one
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://d3v.one/webhistory/
URL der Datenschutzrichtlinien-Seite https://d3v.one/privacy-policy-browser-extensions
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebHistory",
    "short_name": "WebHistory",
    "version": "1.0.4",
    "description": "Show graphical web page history",
    "author": "Michael Koch",
    "homepage_url": "https:\/\/d3v.one\/webhistory\/",
    "icons": {
        "16": "images\/history_16.png",
        "48": "images\/history_48.png",
        "128": "images\/history_128.png"
    },
    "permissions": [
        "",
        "storage",
        "unlimitedStorage",
        "bookmarks"
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5lS7EM2OMHO57loylmzqLVf\/U2HomKuLIwWxPXunNiuA1wzW9FE0xHrvecqYgIIkmvM4Z0iUEm4\/s5OtyjUPRHPYUEEvg+Nm\/VXxvZS+ZBlWz0Z52ZzFG7OfkNgQmWM5h0UgVDTHDy8sae9ipWMYhl6WxgbPSb83ATPZexGQUf7JV9GpOZygUNNv7Cv8j\/XEVL7zO33gn9uUpgx84r4nXyxI\/p5dFtBXw0TerRDYvtloH+hPOJrb8hzYLNnsJnix5GT6dKkWDJe9xLYnKEVh0sUq1aMAv3s3ujWrL+2iHFuZlCDDcu06A1XG3wKEjBIfeWCn1I3kCbMOWEwOZMkczwIDAQAB",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "jshashtable.js",
            "md5.js",
            "pref.js",
            "bitmap.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "pref.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/history_19.png",
            "38": "images\/history_38.png"
        },
        "default_title": "WebHistory"
    },
    "web_accessible_resources": [
        "images\/*.png",
        "mimetype\/*.png",
        "skin\/*.png"
    ]
}