WebHistory

Show graphical web page history

What is WebHistory?

WebHistory is a Chrome extension developed by d3v.one, and its main feature is "Show graphical web page history".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download WebHistory Extension CRX File

Download WebHistory 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

                        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.                    

Extension Basic Information

Name WebHistory WebHistory
ID ffcejpomofjkbfgmeelecmfhhckmaegp
Official URL https://chromewebstore.google.com/detail/webhistory/ffcejpomofjkbfgmeelecmfhhckmaegp
Description Show graphical web page history
File Size 1.01 MB
Installation Count 113
Current Version 1.0.4
Last Updated 2023-03-01
Publish Date 2019-02-25
Rating 5.00/5 Total 1 Ratings
Developer d3v.one
Email [email protected]
Payment Type free
Extension Website https://d3v.one/webhistory/
Privacy Policy Page URL https://d3v.one/privacy-policy-browser-extensions
Supported Languages 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"
    ]
}