ezpp!
Calculate pp for a beatmap directly in your browser.
Was ist ezpp!?
ezpp! ist eine Chrome-Erweiterung, die von oamaok entwickelt wurde, und ihr Hauptmerkmal ist "Calculate pp for a beatmap directly in your browser.".
Erweiterungsscreenshots
ezpp!-Erweiterungs-CRX-Datei herunterladen
Laden Sie ezpp!-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
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
Grundlegende Informationen zur Erweiterung
Name | ezpp! |
ID | aimihpobjpagjiakhcpijibnaafdniol |
Offizielle URL | https://chromewebstore.google.com/detail/ezpp/aimihpobjpagjiakhcpijibnaafdniol |
Beschreibung | Calculate pp for a beatmap directly in your browser. |
Dateigröße | 759 KB |
Installationsanzahl | 43,817 |
Aktuelle Version | 1.10.2 |
Letztes Update | 2021-03-23 |
Veröffentlichungsdatum | 2020-01-08 |
Bewertung | 4.78/5 Insgesamt 263 Bewertungen |
Entwickler | oamaok |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/oamaok/ezpp |
Hilfeseite URL | https://github.com/oamaok/ezpp/issues |
Unterstützte Sprachen | 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\/" ] } |