WakaTime Addon

Removes limit of viewing history in WakaTime

Co to jest WakaTime Addon?

WakaTime Addon to rozszerzenie Chrome opracowane przez always.prog, a jego główną funkcją jest „Removes limit of viewing history in WakaTime”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia WakaTime Addon

Pobierz pliki rozszerzeń WakaTime Addon 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

                        For non-premium users of WakaTime, there is a limitation on viewing their analytics - they can only view the data for the last 2 weeks. This extension removes this limitation. To use it, simply install the extension and refresh the WakaTime dashboard page.                    

Podstawowe informacje o rozszerzeniu

Nazwa WakaTime Addon WakaTime Addon
ID najcldbmeoakbejeapljkfhnmkieibdk
Oficjalny URL https://chrome.google.com/webstore/detail/wakatime-addon/najcldbmeoakbejeapljkfhnmkieibdk
Opis Removes limit of viewing history in WakaTime
Rozmiar pliku 4.62 KB
Liczba instalacji 21
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-03-09
Data Publikacji 2023-03-09
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper always.prog
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Always-prog/wakatime-addon/blob/master/README.md
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WakaTime Addon",
    "description": "Removes limit of viewing history in WakaTime",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/wakatime.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/wakatime.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    }
}