Rouvy beautifier

Make Rouvy web great again!

什么是Rouvy beautifier?

Rouvy beautifier是由jiri.fabian开发的Chrome扩展程序,该扩展的主要功能是“Make Rouvy web great again!”。

扩展截图

screenshot
screenshot
screenshot

下载Rouvy beautifier扩展crx文件

下载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"
    }
}