Rouvy beautifier
Make Rouvy web great again!
Rouvy beautifier란 무엇입니까?
Rouvy beautifier은(는) jiri.fabian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make Rouvy web great again!"입니다.
확장 프로그램 스크린샷
Rouvy beautifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |