History Viewer

Easy access to your current browser session's history

Vad är History Viewer?

History Viewer är en Chrome-tillägg utvecklad av https://james-coyle.dev, och dess huvudfunktion är "Easy access to your current browser session's history".

Tilläggsskärmbilder

screenshot
screenshot

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

Ladda ner History Viewer-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

                        Provides quick access to the history of your current browsing session. Easily return to a page you were looking at 10 minutes ago without having to delve into your browser history.                    

Grundläggande Information om Tillägg

Namn History Viewer History Viewer
ID lepdeiameebhegahgipnooenlpndibng
Officiell webbadress https://chromewebstore.google.com/detail/history-viewer/lepdeiameebhegahgipnooenlpndibng
Beskrivning Easy access to your current browser session's history
Filstorlek 1.49 MB
Antal Installationer 45
Aktuell Version 0.1
Senast Uppdaterad 2022-10-16
Publiceringsdatum 2022-10-16
Utvecklare https://james-coyle.dev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/JamesCoyle/history-extention
Hjälpsida URL https://github.com/JamesCoyle/downloads-extention/issues
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "History Viewer",
    "version": "0.1",
    "short_name": "History",
    "author": "James Coyle",
    "description": "Easy access to your current browser session's history",
    "icons": {
        "512": "icon.png"
    },
    "permissions": [
        "history",
        "storage",
        "favicon"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "History"
    },
    "options_page": "options.html",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+H",
                "mac": "Alt+H",
                "chromeos": "Alt+H",
                "linux": "Alt+H"
            }
        }
    },
    "background": {
        "service_worker": "build\/background.js"
    }
}