Rouvy beautifier

Make Rouvy web great again!

Что такое Rouvy beautifier?

Rouvy beautifier - это расширение Chrome, разработанное jiri.fabian, и его основная функция - "Make Rouvy web great again!".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Rouvy beautifier

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

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

                        Fixes UI problems on official rouvy.com page. Current features: 

1. Showing additional useful info for each race like presence in challenge/career, climb difficulty etc.
2. 1-click removal of favourite routes
3. 1-click adding of challenge routes to favourites
4. Showing estimate times on races list and route details

Minor

1. Official races filter has been introduced. Current version is made compatible accordingly.                    

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

Название Rouvy beautifier Rouvy beautifier
ID ebkpnenkfidplakdcjlgdejlelegjnip
Официальный URL https://chromewebstore.google.com/detail/rouvy-beautifier/ebkpnenkfidplakdcjlgdejlelegjnip
Описание Make Rouvy web great again!
Размер файла 43.65 KB
Количество установок 288
Текущая Версия 1.8.2
Последнее Обновление 2021-05-06
Дата публикации 2021-01-22
Рейтинг 4.89/5 Всего 9 оценок
Разработчик jiri.fabian
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rouvy beautifier",
    "version": "1.8.2",
    "description": "Make Rouvy web great again!",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "alarms",
        "storage",
        "https:\/\/api.apify.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.rouvy.com\/onlinerace*",
                "https:\/\/my.rouvy.com\/online-zavody*"
            ],
            "js": [
                "jquery.js",
                "manage_races.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/my.rouvy.com\/virtual-routes",
                "https:\/\/my.rouvy.com\/virtualni-trasy",
                "https:\/\/my.rouvy.com\/virtuelle-strecken"
            ],
            "js": [
                "jquery.js",
                "manage_routes.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/my.rouvy.com\/challenges"
            ],
            "js": [
                "jquery.js",
                "manage_challenges.js"
            ],
            "run_at": "document_end"
        }
    ],
    "default_icon": {
        "16": "images\/rouvy.png",
        "32": "images\/rouvy.png",
        "48": "images\/rouvy.png",
        "128": "images\/rouvy.png"
    },
    "icons": {
        "16": "images\/rouvy.png",
        "32": "images\/rouvy.png",
        "48": "images\/rouvy.png",
        "128": "images\/rouvy.png"
    }
}