ezpp! experimental
Calculate pp for a beatmap directly in your browser.
Qu'est-ce que ezpp! experimental ?
ezpp! experimental est une extension Chrome développée par PerfectBoat, 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! experimental
Téléchargez les fichiers d'extension ezpp! experimental 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
**This extension is a fork/experimental version of ezpp!.** This extension basically does almost same as ezpp!, but it has more (experimental, or draft) features (and some features will be added to ezpp! at some point). 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/acrylic-style/ezpp/tree/experimental Changelog is available here: https://next.acrylicstyle.xyz/ezpp.html#ezpp_experimental You may also want to check this original extension (which is stable): https://chrome.google.com/webstore/detail/ezpp/aimihpobjpagjiakhcpijibnaafdniol
Informations de Base sur l'Extension
Nom | ezpp! experimental |
ID | iihpkkdlbfcanaaignnjcgmlhhbpoioh |
URL Officiel | https://chromewebstore.google.com/detail/ezpp-experimental/iihpkkdlbfcanaaignnjcgmlhhbpoioh |
Description | Calculate pp for a beatmap directly in your browser. |
Taille du Fichier | 805 KB |
Nombre d'Installations | 149 |
Version Actuelle | 1.11.2 |
Dernière Mise à Jour | 2021-06-17 |
Date de Publication | 2021-06-12 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | PerfectBoat |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/acrylic-style/ezpp/tree/experimental |
URL de la Page d'Aide | https://github.com/acrylic-style/ezpp/discussions |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ezpp! experimental", "description": "Calculate pp for a beatmap directly in your browser.", "version": "1.11.2", "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/osu.ppy.sh\/*" ], "js": [ "content.js" ] } ], "action": { "default_icon": "icon48.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "host_permissions": [ "*:\/\/*.ppy.sh\/" ] } |