ft_blackhole

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

Co to jest ft_blackhole?

ft_blackhole to rozszerzenie Chrome opracowane przez haddi, a jego główną funkcją jest „Shows how many days you have left before you get absorbed by the Blackhole.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ft_blackhole

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

Podstawowe informacje o rozszerzeniu

Nazwa ft_blackhole ft_blackhole
ID pofhnleglcpmmkkaohhadcmombagfeie
Oficjalny URL https://chromewebstore.google.com/detail/ftblackhole/pofhnleglcpmmkkaohhadcmombagfeie
Opis Shows how many days you have left before you get absorbed by the Blackhole.
Rozmiar pliku 36.07 KB
Liczba instalacji 183
Aktualna Wersja 0.6
Ostatnia Aktualizacja 2022-10-22
Data Publikacji 2022-03-24
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper haddi
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mohamedhaddi/ft_blackhole
Obsługiwane Języki 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"
            ]
        }
    ]
}