Quick History

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

Was ist Quick History?

Quick History ist eine Chrome-Erweiterung, die von probukdev entwickelt wurde, und ihr Hauptmerkmal ist "This Chrome extension allows users to view the history of the current active tab in their browser.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Quick History-Erweiterungs-CRX-Datei herunterladen

Laden Sie Quick History-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Quick History Quick History
ID dnngcfoognibnkkngfcamgaibjjlkfdn
Offizielle URL https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn
Beschreibung This Chrome extension allows users to view the history of the current active tab in their browser.
Dateigröße 258 KB
Installationsanzahl 58
Aktuelle Version 0.1.2
Letztes Update 2023-01-23
Veröffentlichungsdatum 2023-01-17
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler probukdev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://quick-history.web.app
Hilfeseite URL https://quick-history.web.app
URL der Datenschutzrichtlinien-Seite https://quick-history.web.app/privacy-policy.html
Unterstützte Sprachen 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
}