Better WCA Profile

Adds more stuff to your WCA profile!

Co to jest Better WCA Profile?

Better WCA Profile to rozszerzenie Chrome opracowane przez Piotr Olszewski, a jego główną funkcją jest „Adds more stuff to your WCA profile!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Better WCA Profile

Pobierz pliki rozszerzeń Better WCA Profile 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

                        Additions to your WCA profile include:
- Rolling averages
- Comparing yourself to others (visit their profile if you're logged on)
- Age of PR's (hover over them)                    

Podstawowe informacje o rozszerzeniu

Nazwa Better WCA Profile Better WCA Profile
ID danpoknbopmfehihibdjipffjeagaelk
Oficjalny URL https://chromewebstore.google.com/detail/better-wca-profile/danpoknbopmfehihibdjipffjeagaelk
Opis Adds more stuff to your WCA profile!
Rozmiar pliku 38.62 KB
Liczba instalacji 115
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2024-02-05
Data Publikacji 2022-03-15
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Piotr Olszewski
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better WCA Profile",
    "version": "1.3",
    "description": "Adds more stuff to your WCA profile!",
    "manifest_version": 3,
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.worldcubeassociation.org\/persons\/*",
                "http:\/\/www.worldcubeassociation.org\/persons\/*"
            ],
            "run_at": "document_end",
            "js": [
                "jquery.js",
                "online_detector.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.worldcubeassociation.org\/persons\/*",
                "http:\/\/www.worldcubeassociation.org\/persons\/*"
            ],
            "run_at": "document_end",
            "js": [
                "jquery.js",
                "rolling_averages.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.worldcubeassociation.org\/persons\/*",
                "http:\/\/www.worldcubeassociation.org\/persons\/*"
            ],
            "run_at": "document_end",
            "js": [
                "jquery.js",
                "age_of_pbs.js"
            ]
        }
    ]
}