WebHistory

Show graphical web page history

ما هو WebHistory؟

WebHistory هو إضافة Chrome تم تطويرها بواسطة d3v.one، والميزة الرئيسية لها هي "Show graphical web page history".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة WebHistory

قم بتنزيل ملفات الامتداد WebHistory بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم WebHistory WebHistory
ID ffcejpomofjkbfgmeelecmfhhckmaegp
عنوان URL الرسمي https://chromewebstore.google.com/detail/webhistory/ffcejpomofjkbfgmeelecmfhhckmaegp
الوصف Show graphical web page history
حجم الملف 1.01 MB
عدد التثبيتات 113
النسخة الحالية 1.0.4
آخر تحديث 2023-03-01
تاريخ النشر 2019-02-25
تقييم 5.00/5 مجموع تقييمات 1
المطور d3v.one
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://d3v.one/webhistory/
عنوان صفحة سياسة الخصوصية https://d3v.one/privacy-policy-browser-extensions
اللغات المدعومة 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"
    ]
}