CollegeConfetti

Admission Letter Stress Be Gone!

Co to jest CollegeConfetti?

CollegeConfetti to rozszerzenie Chrome opracowane przez https://bananiumlabs.com, a jego główną funkcją jest „Admission Letter Stress Be Gone!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia CollegeConfetti

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

                        Have you ever been frustrated with having to nervously read through your admission letter just to find out you were rejected? How about the lack of gratification when no confetti appears?! Worry no more! Introducing... ADMISSION_CONFETTI.crx! This chrome extension will scan any webpages you visit ending in .edu for the word 'Congratuations' even if they are in an iframe. If it does detect any traces of flour-based commodity, such as bread, you will be introduced to an infinite flow of confetti. What can get better than that?!

Changelog:
1.0.1 - Hide canvas when no confetti is available
1.0.2 - FULL SCREEN CONFETTI!!!

Full source code is available here: https://github.com/EnumC/CollegeConfetti                    

Podstawowe informacje o rozszerzeniu

Nazwa CollegeConfetti CollegeConfetti
ID jdhoaebmpnhhpgokednpeoaohmimflee
Oficjalny URL https://chromewebstore.google.com/detail/collegeconfetti/jdhoaebmpnhhpgokednpeoaohmimflee
Opis Admission Letter Stress Be Gone!
Rozmiar pliku 42.94 KB
Liczba instalacji 159
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2021-02-25
Data Publikacji 2019-03-27
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper https://bananiumlabs.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://enumc.com
Adres URL Strony Pomocy https://enumc.com
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CollegeConfetti",
    "description": "Admission Letter Stress Be Gone!",
    "version": "1.0.2",
    "icons": {
        "128": "128.png",
        "48": "48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.edu\/*",
                "https:\/\/*.edu\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "http:\/\/*.edu\/*",
        "https:\/\/*.edu\/*"
    ],
    "author": "Eric Qian",
    "homepage_url": "https:\/\/bananiumlabs.com",
    "manifest_version": 2
}