History by Date

Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…

Co to jest History by Date?

History by Date to rozszerzenie Chrome opracowane przez https://baylaunch.com, a jego główną funkcją jest „Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia History by Date

Pobierz pliki rozszerzeń History by Date 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

                        Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy.

* Navigate browser history by date
* Break usage down by continuous sessions
* See what domains you visited most, per session
* Example: "I used Chrome for 3 hours in the morning (mostly StackOverflow), and 2 hours in evening (mostly Gmail)"
* Calculates total hours spent online each day
* Filter out specific domains (Example: "Ignore Youtube.com")                    

Podstawowe informacje o rozszerzeniu

Nazwa History by Date History by Date
ID cancngpbjlfnkdfeigpododikkpelmfg
Oficjalny URL https://chromewebstore.google.com/detail/history-by-date/cancngpbjlfnkdfeigpododikkpelmfg
Opis Browse your history by date, instead of infinite scroll. This extension is open source. It also respects your privacy. * Navigate…
Rozmiar pliku 367 KB
Liczba instalacji 14,383
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2017-12-04
Data Publikacji 2017-12-03
Ocena 4.13/5 Łącznie 30 Oceny
Deweloper https://baylaunch.com
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "History by Date",
    "short_name": "HistoryDate",
    "version": "1.0.5",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "dist\/logo_128.png",
        "default_title": "History by Date"
    },
    "background": {
        "scripts": [
            "back\/background.js"
        ]
    },
    "content_security_policy": "default-src 'self'; script-src 'self' http:\/\/localhost:3000 'unsafe-eval'; connect-src http:\/\/localhost:3000; img-src 'self' chrome:\/\/favicon; style-src 'self' http:\/\/localhost:3000 'unsafe-inline'",
    "permissions": [
        "history",
        "storage",
        "chrome:\/\/favicon\/",
        "tabs"
    ],
    "web_accessible_resources": [
        "front\/*",
        "dist\/*"
    ],
    "icons": {
        "128": "dist\/logo_128.png"
    },
    "commands": {
        "open-history-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "View browser history"
        }
    }
}