Quick History

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

Vad är Quick History?

Quick History är en Chrome-tillägg utvecklad av probukdev, och dess huvudfunktion är "This Chrome extension allows users to view the history of the current active tab in their browser.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Quick History-förlängningens CRX-fil

Ladda ner Quick History-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Quick History Quick History
ID dnngcfoognibnkkngfcamgaibjjlkfdn
Officiell webbadress https://chromewebstore.google.com/detail/quick-history/dnngcfoognibnkkngfcamgaibjjlkfdn
Beskrivning This Chrome extension allows users to view the history of the current active tab in their browser.
Filstorlek 258 KB
Antal Installationer 58
Aktuell Version 0.1.2
Senast Uppdaterad 2023-01-23
Publiceringsdatum 2023-01-17
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare probukdev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://quick-history.web.app
Hjälpsida URL https://quick-history.web.app
URL till Sekretesspolicy Sidan https://quick-history.web.app/privacy-policy.html
Stödda Språk 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
}