pp calculator
Calculates the osu! pp values directly in your web browser
pp calculatorคืออะไร?
pp calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย abstrakt และคุณลักษณะหลักของมันคือ "Calculates the osu! pp values directly in your web browser"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย pp calculator
ดาวน์โหลดไฟล์ส่วนขยาย pp calculator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
🖥️ Calculate how much osu! pp you can earn directly in your web browser 🚀 Up to date with the latest rework: 2022.09 🥁 Support for all game modes (osu!, taiko, mania, catch) 🦭 For support and suggestions join the Discord server found in the "Support" tab
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | pp calculator |
ID | eoelpnjffjkdmfhfinfbgiejnbgihpdn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn |
คำอธิบาย | Calculates the osu! pp values directly in your web browser |
ขนาดไฟล์ | 1.36 MB |
จำนวนการติดตั้ง | 32,536 |
เวอร์ชันปัจจุบัน | 1.2.0 |
อัปเดตครั้งล่าสุด | 2023-03-29 |
วันที่เผยแพร่ | 2022-01-13 |
คะแนน | 4.94/5 รวมทั้งหมด 52 คะแนน |
ผู้พัฒนา | abstrakt |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://discord.com/invite/Cm5W9QcNXB |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.2.0", "name": "pp calculator", "description": "Calculates the osu! pp values directly in your web browser", "action": { "default_title": "pp calculator", "default_popup": "popup.html", "default_icon": { "128": "icons\/icon_128.png" } }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/osu.ppy.sh\/*" ], "js": [ "content.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self'" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/*.ppy.sh\/" ], "icons": { "128": "icons\/icon_128.png" } } |