pp calculator
Calculates the osu! pp values directly in your web browser
Apa itu pp calculator?
pp calculator adalah ekstensi Chrome yang dikembangkan oleh abstrakt, dan fitur utamanya adalah "Calculates the osu! pp values directly in your web browser".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi pp calculator
Unduh file ekstensi pp calculator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
🖥️ 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
Informasi Dasar Ekstensi
Nama | pp calculator |
ID | eoelpnjffjkdmfhfinfbgiejnbgihpdn |
URL Resmi | https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn |
Deskripsi | Calculates the osu! pp values directly in your web browser |
Ukuran File | 1.36 MB |
Jumlah Instalasi | 32,536 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2023-03-29 |
Tanggal Publikasi | 2022-01-13 |
Penilaian | 4.94/5 Total 52 Penilaian |
Pengembang | abstrakt |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://discord.com/invite/Cm5W9QcNXB |
Bahasa yang Didukung | 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" } } |