ft_logtime

Calculates your logtime at https://intra.42.fr.

Co to jest ft_logtime?

ft_logtime to rozszerzenie Chrome opracowane przez haddi, a jego główną funkcją jest „Calculates your logtime at https://intra.42.fr.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ft_logtime

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

                        A simple extension that calculates a user's log time on https://intra.42.fr and shows it in the "Logtime" section of their profile.

Version 2.0 bug fix:
- With the start of 2021 a bug occurred where only 2021's months were able to show the log time, it's fixed now.

For any feature requests or problems, feel free to open an issue on the GitHub repository, or create a pull request.
Source code on GitHub: https://github.com/mohamedhaddi/ft_logtime/                    

Podstawowe informacje o rozszerzeniu

Nazwa ft_logtime ft_logtime
ID mnohnflacgkmhaocfhhmjeeciibiciep
Oficjalny URL https://chromewebstore.google.com/detail/ftlogtime/mnohnflacgkmhaocfhhmjeeciibiciep
Opis Calculates your logtime at https://intra.42.fr.
Rozmiar pliku 21.23 KB
Liczba instalacji 826
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2021-01-02
Data Publikacji 2020-12-25
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper haddi
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mohamedhaddi/ft_logtime/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ft_logtime",
    "version": "2.0",
    "description": "Calculates your logtime at https:\/\/intra.42.fr.",
    "icons": {
        "48": "icons\/42-logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/profile.intra.42.fr\/",
                "https:\/\/profile.intra.42.fr\/users\/*",
                "https:\/\/profile.intra.42.fr\/users\/*\/"
            ],
            "js": [
                "ft_logtime.js"
            ]
        }
    ]
}