Better WCA Profile
Adds more stuff to your WCA profile!
什么是Better WCA Profile?
Better WCA Profile是由Piotr Olszewski开发的Chrome扩展程序,该扩展的主要功能是“Adds more stuff to your WCA profile!”。
扩展截图
下载Better WCA Profile扩展crx文件
下载Better WCA Profile扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Additions to your WCA profile include: - Rolling averages - Comparing yourself to others (visit their profile if you're logged on) - Age of PR's (hover over them)
扩展基本信息
名称 | Better WCA Profile |
ID | danpoknbopmfehihibdjipffjeagaelk |
官方URL | https://chromewebstore.google.com/detail/better-wca-profile/danpoknbopmfehihibdjipffjeagaelk |
简介 | Adds more stuff to your WCA profile! |
文件大小 | 38.62 KB |
安装次数 | 115 |
当前版本 | 1.3 |
更新时间 | 2024-02-05 |
上架时间 | 2022-03-15 |
评分 | 5.00/5 共3次评分 |
开发者 | Piotr Olszewski |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better WCA Profile", "version": "1.3", "description": "Adds more stuff to your WCA profile!", "manifest_version": 3, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/www.worldcubeassociation.org\/persons\/*", "http:\/\/www.worldcubeassociation.org\/persons\/*" ], "run_at": "document_end", "js": [ "jquery.js", "online_detector.js" ] }, { "matches": [ "https:\/\/www.worldcubeassociation.org\/persons\/*", "http:\/\/www.worldcubeassociation.org\/persons\/*" ], "run_at": "document_end", "js": [ "jquery.js", "rolling_averages.js" ] }, { "matches": [ "https:\/\/www.worldcubeassociation.org\/persons\/*", "http:\/\/www.worldcubeassociation.org\/persons\/*" ], "run_at": "document_end", "js": [ "jquery.js", "age_of_pbs.js" ] } ] } |