Sorare custom colors
Customise and harmonise rating colours on the sorare.com and soraredata.com websites.
Sorare custom colors란 무엇입니까?
Sorare custom colors은(는) sokerdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customise and harmonise rating colours on the sorare.com and soraredata.com websites."입니다.
확장 프로그램 스크린샷
Sorare custom colors 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Enhance your experience on Sorare.com and SorareData.com with Sorare Custom Colors, the must-have Chrome extension for any Sorare manager. This extension allows you to customize the color association for player ratings, providing you with optimized visibility and a more intuitive performance analysis. Key Features: - Color Customization by Rating Range: Set colors to correspond to specific rating intervals for instant visual assessment of player capabilities. - Progressive Gradient Display: Enable a gradient display to smoothly visualize the progression of player performances. - Highlighting DS and AA performance: DS and AA scores are coloured so you can see at a glance how a player is performing. - Predefined Color Themes: Choose from a variety of color themes crafted to enhance your browsing and analytical experience. Install Sorare Custom Colors and transform the way you track and scout players on Sorare!
확장 프로그램 기본 정보
이름 | Sorare custom colors |
ID | eioheclniecfacgghojghkleibgeoipn |
공식 URL | https://chromewebstore.google.com/detail/sorare-custom-colors/eioheclniecfacgghojghkleibgeoipn |
설명 | Customise and harmonise rating colours on the sorare.com and soraredata.com websites. |
파일 크기 | 111 KB |
설치 횟수 | 136 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2023-11-16 |
출시 날짜 | 2023-11-10 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | sokerdev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Sorare custom colors", "version": "1.0.3", "description": "Customise and harmonise rating colours on the sorare.com and soraredata.com websites.", "permissions": [ "storage" ], "icons": { "16": "sorare_color_bis_16.png", "32": "sorare_color_bis_32.png", "48": "sorare_color_bis_48.png", "128": "sorare_color_bis_128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.soraredata.com\/*" ], "js": [ "contentsoraredata.js" ], "type": "module" }, { "matches": [ "*:\/\/*.sorare.com\/football*" ], "js": [ "contentsorare.js" ], "type": "module" } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "sorare_color_bis_16.png", "32": "sorare_color_bis_32.png", "48": "sorare_color_bis_48.png", "128": "sorare_color_bis_128.png" } } } |