Quick History

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

Co to jest Quick History?

Quick History to rozszerzenie Chrome opracowane przez probukdev, a jego główną funkcją jest „This Chrome extension allows users to view the history of the current active tab in their browser.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Quick History

Pobierz pliki rozszerzeń Quick History w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Quick History Quick History
ID dnngcfoognibnkkngfcamgaibjjlkfdn
Oficjalny URL https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn
Opis This Chrome extension allows users to view the history of the current active tab in their browser.
Rozmiar pliku 258 KB
Liczba instalacji 58
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2023-01-23
Data Publikacji 2023-01-17
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper probukdev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://quick-history.web.app
Adres URL Strony Pomocy https://quick-history.web.app
Adres URL Strony Polityki Prywatności https://quick-history.web.app/privacy-policy.html
Obsługiwane Języki 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
}