Better WCA Profile

Adds more stuff to your WCA profile!

Что такое Better WCA Profile?

Better WCA Profile - это расширение Chrome, разработанное Piotr Olszewski, и его основная функция - "Adds more stuff to your WCA profile!".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Better WCA Profile

Скачайте файлы расширений Better WCA Profile в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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)                    

Основная информация о расширении

Название Better WCA Profile Better WCA Profile
ID danpoknbopmfehihibdjipffjeagaelk
Официальный URL https://chromewebstore.google.com/detail/better-wca-profile/danpoknbopmfehihibdjipffjeagaelk
Описание Adds more stuff to your WCA profile!
Размер файла 38.62 KB
Количество установок 115
Текущая Версия 1.3
Последнее Обновление 2024-02-05
Дата публикации 2022-03-15
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Piotr Olszewski
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}