ft_blackhole

Shows how many days you have left before you get absorbed by the Blackhole.

Was ist ft_blackhole?

ft_blackhole ist eine Chrome-Erweiterung, die von haddi entwickelt wurde, und ihr Hauptmerkmal ist "Shows how many days you have left before you get absorbed by the Blackhole.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ft_blackhole-Erweiterungs-CRX-Datei herunterladen

Laden Sie ft_blackhole-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 shows how many days a user has left until the date of the deadline (Blackhole) on https://intra.42.fr and shows it in right under the date in the "Black Hole absorption" section of their profile.

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_blackhole                    

Grundlegende Informationen zur Erweiterung

Name ft_blackhole ft_blackhole
ID pofhnleglcpmmkkaohhadcmombagfeie
Offizielle URL https://chromewebstore.google.com/detail/ftblackhole/pofhnleglcpmmkkaohhadcmombagfeie
Beschreibung Shows how many days you have left before you get absorbed by the Blackhole.
Dateigröße 36.07 KB
Installationsanzahl 183
Aktuelle Version 0.6
Letztes Update 2022-10-22
Veröffentlichungsdatum 2022-03-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler haddi
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/mohamedhaddi/ft_blackhole
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ft_blackhole",
    "version": "0.6",
    "description": "Shows how many days you have left before you get absorbed by the Blackhole.",
    "icons": {
        "48": "icons\/blackhole.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/profile.intra.42.fr\/",
                "https:\/\/profile.intra.42.fr\/users\/*",
                "https:\/\/profile.intra.42.fr\/users\/*\/"
            ],
            "js": [
                "ft_blackhole.js"
            ]
        }
    ]
}