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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้านโยบายความเป็นส่วนตัว 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"
    ]
}