CF stalker
stalk profiles on code forces
CF stalkerคืออะไร?
CF stalker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dhruv batra และคุณลักษณะหลักของมันคือ "stalk profiles on code forces"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CF stalker
ดาวน์โหลดไฟล์ส่วนขยาย CF stalker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
CF stalker chrome extension imporve the codeforces profile webpage to include statistics of problem solved by time by that user.User can select year in the first graph to see lowest and highest rating solved for month and by hovering over the bar it shows the tags and and count of no of problem solved with that tag. In the second graph user can select month for which he want to see the day wise chart , which tell no of problem solved on that day and there tags and user can select the day he wants to see what problem he solved on that day , if user has solved the same problem twice on that day it will be shown only once. The extension communicates only with the Codeforces API and runs entirely on the browser.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CF stalker |
ID | njjefmgmfomkdfkoiimnjbhckbjldihb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/cf-stalker/njjefmgmfomkdfkoiimnjbhckbjldihb |
คำอธิบาย | stalk profiles on code forces |
ขนาดไฟล์ | 107 KB |
จำนวนการติดตั้ง | 1,707 |
เวอร์ชันปัจจุบัน | 0.1.2 |
อัปเดตครั้งล่าสุด | 2022-01-07 |
วันที่เผยแพร่ | 2022-01-06 |
คะแนน | 4.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | dhruv batra |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://www.freeprivacypolicy.com/live/7f4c6c58-ba49-4513-90db-1290f855930b |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CF stalker", "version": "0.1.2", "description": "stalk profiles on code forces", "icons": { "128": "src\/icons\/128.png", "48": "src\/icons\/48.png", "16": "src\/icons\/16.png" }, "browser_action": { "default_icon": "src\/icons\/16.png", "default_popup": "src\/popup.html", "default_title": "CF stalker" }, "background": { "scripts": [ "src\/js\/bgscripts.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/codeforces.com\/profile\/*" ], "js": [ "src\/lib\/jquery-3.6.0.min.js", "src\/lib\/chart.min.js", "src\/js\/main.js" ] } ], "permissions": [ "https:\/\/codeforces.com\/*" ] } |