ft_logtime

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

Was ist ft_logtime?

ft_logtime ist eine Chrome-Erweiterung, die von haddi entwickelt wurde, und ihr Hauptmerkmal ist "Calculates your logtime at https://intra.42.fr.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ft_logtime-Erweiterungs-CRX-Datei herunterladen

Laden Sie ft_logtime-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name ft_logtime ft_logtime
ID mnohnflacgkmhaocfhhmjeeciibiciep
Offizielle URL https://chromewebstore.google.com/detail/ftlogtime/mnohnflacgkmhaocfhhmjeeciibiciep
Beschreibung Calculates your logtime at https://intra.42.fr.
Dateigröße 21.23 KB
Installationsanzahl 826
Aktuelle Version 2.0
Letztes Update 2021-01-02
Veröffentlichungsdatum 2020-12-25
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler haddi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/mohamedhaddi/ft_logtime/
Unterstützte Sprachen 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"
            ]
        }
    ]
}