pp calculator
Calculates the osu! pp values directly in your web browser
Qu'est-ce que pp calculator ?
pp calculator est une extension Chrome développée par abstrakt, et sa fonction principale est "Calculates the osu! pp values directly in your web browser".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension pp calculator
Téléchargez les fichiers d'extension pp calculator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
🖥️ 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
Informations de Base sur l'Extension
Nom | pp calculator |
ID | eoelpnjffjkdmfhfinfbgiejnbgihpdn |
URL Officiel | https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn |
Description | Calculates the osu! pp values directly in your web browser |
Taille du Fichier | 1.36 MB |
Nombre d'Installations | 32,536 |
Version Actuelle | 1.2.0 |
Dernière Mise à Jour | 2023-03-29 |
Date de Publication | 2022-01-13 |
Évaluation | 4.94/5 Total 52 Évaluations |
Développeur | abstrakt |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://discord.com/invite/Cm5W9QcNXB |
Langues Prises en Charge | 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" } } |