History Viewer

Easy access to your current browser session's history

History Viewer là gì?

History Viewer là một tiện ích mở rộng Chrome được phát triển bởi https://james-coyle.dev, và tính năng chính của nó là "Easy access to your current browser session's history".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng History Viewer

Tải xuống các tệp mở rộng History Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên History Viewer History Viewer
ID lepdeiameebhegahgipnooenlpndibng
URL Chính Thức https://chromewebstore.google.com/detail/history-viewer/lepdeiameebhegahgipnooenlpndibng
Mô tả Easy access to your current browser session's history
Kích Thước Tệp 1.49 MB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2022-10-16
Ngày Phát Hành 2022-10-16
Nhà Phát Triển https://james-coyle.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/JamesCoyle/history-extention
URL Trang Trợ Giúp https://github.com/JamesCoyle/downloads-extention/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}