Quick History

This Chrome extension allows users to view the history of the current active tab in their browser.

什麼是Quick History?

Quick History是由probukdev開發的Chrome擴展程式,該擴展的主要功能是“This Chrome extension allows users to view the history of the current active tab in their browser.”。

擴展截圖

screenshot
screenshot
screenshot

下載Quick History擴展crx文件

下載Quick History擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Privacy is considered as the most important feature. Browsing data is stored in the browser itself and there are no network calls present. The browser history data is not synched anywhere else.

Deleting the extension will delete all data stored by the extension on your browser.

Quick History requests the minimum permissions required to operate the extension.                    

擴展基本資訊

名稱 Quick History Quick History
ID dnngcfoognibnkkngfcamgaibjjlkfdn
官方網址 https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn
簡介 This Chrome extension allows users to view the history of the current active tab in their browser.
檔案大小 258 KB
安裝次數 58
目前版本 0.1.2
更新時間 2023-01-23
上架時間 2023-01-17
評分 5.00/5 共 2 次評分
開發者 probukdev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://quick-history.web.app
說明頁面URL https://quick-history.web.app
隱私政策頁面URL https://quick-history.web.app/privacy-policy.html
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick History",
    "version": "0.1.2",
    "description": "This Chrome extension allows users to view the history of the current active tab in their browser.",
    "permissions": [
        "storage",
        "tabs",
        "unlimitedStorage",
        "history"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/bookmark.png",
                "assets\/play.png",
                "assets\/delete.png",
                "assets\/save.png"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "assets\/quick-history-16.png",
        "24": "assets\/quick-history-24.png",
        "32": "assets\/quick-history-32.png",
        "64": "assets\/quick-history-64.png",
        "128": "assets\/quick-history-64.png"
    },
    "action": {
        "default_icon": {
            "16": "assets\/quick-history-16.png",
            "24": "assets\/quick-history-24.png",
            "32": "assets\/quick-history-32.png",
            "64": "assets\/quick-history-64.png",
            "128": "assets\/quick-history-64.png"
        },
        "default_title": "Quick History",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}