History Viewer
Easy access to your current browser session's history
Co to jest History Viewer?
History Viewer to rozszerzenie Chrome opracowane przez https://james-coyle.dev, a jego główną funkcją jest „Easy access to your current browser session's history”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia History Viewer
Pobierz pliki rozszerzeń History Viewer 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
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | lepdeiameebhegahgipnooenlpndibng |
Oficjalny URL | https://chromewebstore.google.com/detail/history-viewer/lepdeiameebhegahgipnooenlpndibng |
Opis | Easy access to your current browser session's history |
Rozmiar pliku | 1.49 MB |
Liczba instalacji | 45 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2022-10-16 |
Data Publikacji | 2022-10-16 |
Deweloper | https://james-coyle.dev |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/JamesCoyle/history-extention |
Adres URL Strony Pomocy | https://github.com/JamesCoyle/downloads-extention/issues |
Obsługiwane Języki | 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" } } |