Rouvy beautifier

Make Rouvy web great again!

Rouvy beautifier क्या है?

Rouvy beautifier jiri.fabian द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make Rouvy web great again!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Rouvy beautifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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