ezpp! experimental
Calculate pp for a beatmap directly in your browser.
Was ist ezpp! experimental?
ezpp! experimental ist eine Chrome-Erweiterung, die von PerfectBoat entwickelt wurde, und ihr Hauptmerkmal ist "Calculate pp for a beatmap directly in your browser.".
Erweiterungsscreenshots
ezpp! experimental-Erweiterungs-CRX-Datei herunterladen
Laden Sie ezpp! experimental-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
**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
Grundlegende Informationen zur Erweiterung
Name | ezpp! experimental |
ID | iihpkkdlbfcanaaignnjcgmlhhbpoioh |
Offizielle URL | https://chromewebstore.google.com/detail/ezpp-experimental/iihpkkdlbfcanaaignnjcgmlhhbpoioh |
Beschreibung | Calculate pp for a beatmap directly in your browser. |
Dateigröße | 805 KB |
Installationsanzahl | 149 |
Aktuelle Version | 1.11.2 |
Letztes Update | 2021-06-17 |
Veröffentlichungsdatum | 2021-06-12 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | PerfectBoat |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/acrylic-style/ezpp/tree/experimental |
Hilfeseite URL | https://github.com/acrylic-style/ezpp/discussions |
Unterstützte Sprachen | 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\/" ] } |