o!pp
Calculate PP and beatmap stats for every game mode
Was ist o!pp?
o!pp ist eine Chrome-Erweiterung, die von TheEZIC entwickelt wurde, und ihr Hauptmerkmal ist "Calculate PP and beatmap stats for every game mode".
Erweiterungsscreenshots
o!pp-Erweiterungs-CRX-Datei herunterladen
Laden Sie o!pp-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
Calculate performance points (PP) with options to change mods, accuracy, combo, misses etc, for every osu! gamemode. Also displays beatmap stats. This tool requires osu!api V1 key. You can get in on: https://osu.ppy.sh/p/api/ http://old.ppy.sh/p/api/ Extension has open source code. You can report issue or request something: https://github.com/TheEZIC/O-pp
Grundlegende Informationen zur Erweiterung
Name | o!pp |
ID | hjlbhnjnmmfadkobjkmddmgopanllkna |
Offizielle URL | https://chromewebstore.google.com/detail/opp/hjlbhnjnmmfadkobjkmddmgopanllkna |
Beschreibung | Calculate PP and beatmap stats for every game mode |
Dateigröße | 401 KB |
Installationsanzahl | 1,582 |
Aktuelle Version | 0.2.1 |
Letztes Update | 2021-03-06 |
Veröffentlichungsdatum | 2020-07-29 |
Bewertung | 5.00/5 Insgesamt 8 Bewertungen |
Entwickler | TheEZIC |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "o!pp", "version": "0.2.1", "description": "Calculate PP and beatmap stats for every game mode", "manifest_version": 2, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "O!pp", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs", "https:\/\/osu.ppy.sh\/" ], "content_scripts": [ { "matches": [ "https:\/\/osu.ppy.sh\/*" ], "js": [ "content_script.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |