pp calculator
Calculates the osu! pp values directly in your web browser
Wat is pp calculator?
pp calculator is een Chrome-extensie ontwikkeld door abstrakt, en de belangrijkste functie is "Calculates the osu! pp values directly in your web browser".
Extensie Screenshots
Download het CRX-bestand van de extensie pp calculator
Download pp calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
🖥️ 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
Basisinformatie over de Extensie
Naam | pp calculator |
ID | eoelpnjffjkdmfhfinfbgiejnbgihpdn |
Officiële URL | https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn |
Beschrijving | Calculates the osu! pp values directly in your web browser |
Bestandsgrootte | 1.36 MB |
Aantal Installaties | 32,536 |
Huidige Versie | 1.2.0 |
Laatst Bijgewerkt | 2023-03-29 |
Publicatiedatum | 2022-01-13 |
Beoordeling | 4.94/5 Totaal 52 Beoordelingen |
Ontwikkelaar | abstrakt |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://discord.com/invite/Cm5W9QcNXB |
Ondersteunde Talen | 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" } } |