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
官方網址 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"
    }
}