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 |
官方網址 | 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" ] } ] } |