Rouvy beautifier
Make Rouvy web great again!
Wat is Rouvy beautifier?
Rouvy beautifier is een Chrome-extensie ontwikkeld door jiri.fabian, en de belangrijkste functie is "Make Rouvy web great again!".
Extensie Screenshots
Download het CRX-bestand van de extensie Rouvy beautifier
Download Rouvy beautifier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | ebkpnenkfidplakdcjlgdejlelegjnip |
Officiële URL | https://chromewebstore.google.com/detail/rouvy-beautifier/ebkpnenkfidplakdcjlgdejlelegjnip |
Beschrijving | Make Rouvy web great again! |
Bestandsgrootte | 43.65 KB |
Aantal Installaties | 288 |
Huidige Versie | 1.8.2 |
Laatst Bijgewerkt | 2021-05-06 |
Publicatiedatum | 2021-01-22 |
Beoordeling | 4.89/5 Totaal 9 Beoordelingen |
Ontwikkelaar | jiri.fabian |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |