Rouvy beautifier
Make Rouvy web great again!
Rouvy beautifierとは何ですか?
Rouvy beautifierはjiri.fabianによって開発されたChromeの拡張機能で、その主な機能は「Make Rouvy web great again!」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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" } } |