o!pp
Calculate PP and beatmap stats for every game mode
Wat is o!pp?
o!pp is een Chrome-extensie ontwikkeld door TheEZIC, en de belangrijkste functie is "Calculate PP and beatmap stats for every game mode".
Extensie Screenshots
Download het CRX-bestand van de extensie o!pp
Download o!pp-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | o!pp |
ID | hjlbhnjnmmfadkobjkmddmgopanllkna |
Officiële URL | https://chromewebstore.google.com/detail/opp/hjlbhnjnmmfadkobjkmddmgopanllkna |
Beschrijving | Calculate PP and beatmap stats for every game mode |
Bestandsgrootte | 401 KB |
Aantal Installaties | 1,582 |
Huidige Versie | 0.2.1 |
Laatst Bijgewerkt | 2021-03-06 |
Publicatiedatum | 2020-07-29 |
Beoordeling | 5.00/5 Totaal 8 Beoordelingen |
Ontwikkelaar | TheEZIC |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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'" } |