Rouvy beautifier
Make Rouvy web great again!
ما هو Rouvy beautifier؟
Rouvy beautifier هو إضافة Chrome تم تطويرها بواسطة jiri.fabian، والميزة الرئيسية لها هي "Make Rouvy web great again!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Rouvy beautifier
قم بتنزيل ملفات الامتداد Rouvy beautifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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.
معلومات أساسية عن التمديد
الاسم | |
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" } } |