pp calculator
Calculates the osu! pp values directly in your web browser
Vad är pp calculator?
pp calculator är en Chrome-tillägg utvecklad av abstrakt, och dess huvudfunktion är "Calculates the osu! pp values directly in your web browser".
Tilläggsskärmbilder
Ladda ner pp calculator-förlängningens CRX-fil
Ladda ner pp calculator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
🖥️ 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
Grundläggande Information om Tillägg
Namn | pp calculator |
ID | eoelpnjffjkdmfhfinfbgiejnbgihpdn |
Officiell webbadress | https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn |
Beskrivning | Calculates the osu! pp values directly in your web browser |
Filstorlek | 1.36 MB |
Antal Installationer | 32,536 |
Aktuell Version | 1.2.0 |
Senast Uppdaterad | 2023-03-29 |
Publiceringsdatum | 2022-01-13 |
Betyg | 4.94/5 Totalt 52 Betyg |
Utvecklare | abstrakt |
E-post | [email protected] |
Betalningssätt | free |
Hjälpsida URL | https://discord.com/invite/Cm5W9QcNXB |
Stödda Språk | 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" } } |