o!pp

Calculate PP and beatmap stats for every game mode

Cos'è o!pp?

o!pp è un'estensione di Chrome sviluppata da TheEZIC, e la sua funzione principale è "Calculate PP and beatmap stats for every game mode".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione o!pp

Scarica i file di estensione o!pp in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome o!pp o!pp
ID hjlbhnjnmmfadkobjkmddmgopanllkna
URL Ufficiale https://chromewebstore.google.com/detail/opp/hjlbhnjnmmfadkobjkmddmgopanllkna
Descrizione Calculate PP and beatmap stats for every game mode
Dimensione del File 401 KB
Conteggio Installazioni 1,582
Versione Corrente 0.2.1
Ultimo Aggiornamento 2021-03-06
Data di Pubblicazione 2020-07-29
Valutazione 5.00/5 Totale 8 Valutazioni
Sviluppatore TheEZIC
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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'"
}