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
公式URL 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
Eメール [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
}