History Viewer

Easy access to your current browser session's history

History Viewerคืออะไร?

History Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://james-coyle.dev และคุณลักษณะหลักของมันคือ "Easy access to your current browser session's history"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย History Viewer

ดาวน์โหลดไฟล์ส่วนขยาย History Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Provides quick access to the history of your current browsing session. Easily return to a page you were looking at 10 minutes ago without having to delve into your browser history.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ History Viewer History Viewer
ID lepdeiameebhegahgipnooenlpndibng
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/history-viewer/lepdeiameebhegahgipnooenlpndibng
คำอธิบาย Easy access to your current browser session's history
ขนาดไฟล์ 1.49 MB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2022-10-16
วันที่เผยแพร่ 2022-10-16
ผู้พัฒนา https://james-coyle.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/JamesCoyle/history-extention
URL หน้าช่วยเหลือ https://github.com/JamesCoyle/downloads-extention/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "History Viewer",
    "version": "0.1",
    "short_name": "History",
    "author": "James Coyle",
    "description": "Easy access to your current browser session's history",
    "icons": {
        "512": "icon.png"
    },
    "permissions": [
        "history",
        "storage",
        "favicon"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "History"
    },
    "options_page": "options.html",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+H",
                "mac": "Alt+H",
                "chromeos": "Alt+H",
                "linux": "Alt+H"
            }
        }
    },
    "background": {
        "service_worker": "build\/background.js"
    }
}