ezpp!
Calculate pp for a beatmap directly in your browser.
Qu'est-ce que ezpp! ?
ezpp! est une extension Chrome développée par oamaok, et sa fonction principale est "Calculate pp for a beatmap directly in your browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ezpp!
Téléchargez les fichiers d'extension ezpp! 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
ezpp! allows you to calculate the osu! pp values for a given beatmap directly in the browser. Just go to a beatmap's page, unranked or not, and click the extension. No login or API key required. This extension is open source and can be found here: https://github.com/oamaok/ezpp
Informations de Base sur l'Extension
Nom | ezpp! |
ID | aimihpobjpagjiakhcpijibnaafdniol |
URL Officiel | https://chromewebstore.google.com/detail/ezpp/aimihpobjpagjiakhcpijibnaafdniol |
Description | Calculate pp for a beatmap directly in your browser. |
Taille du Fichier | 759 KB |
Nombre d'Installations | 43,817 |
Version Actuelle | 1.10.2 |
Dernière Mise à Jour | 2021-03-23 |
Date de Publication | 2020-01-08 |
Évaluation | 4.78/5 Total 263 Évaluations |
Développeur | oamaok |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/oamaok/ezpp |
URL de la Page d'Aide | https://github.com/oamaok/ezpp/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ezpp!", "description": "Calculate pp for a beatmap directly in your browser.", "version": "1.10.2", "icons": { "48": "icon48.png", "128": "icon128.png" }, "applications": { "gecko": { "id": "[email protected]" } }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/osu.ppy.sh\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_icon": "icon48.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage", "https:\/\/*.ppy.sh\/", "http:\/\/*.ppy.sh\/" ] } |