ezpp!

Calculate pp for a beatmap directly in your browser.

Cos'è ezpp!?

ezpp! è un'estensione di Chrome sviluppata da oamaok, e la sua funzione principale è "Calculate pp for a beatmap directly in your browser.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ezpp!

Scarica i file di estensione ezpp! 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

                        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                    

Informazioni di Base sull'Estensione

Nome ezpp! ezpp!
ID aimihpobjpagjiakhcpijibnaafdniol
URL Ufficiale https://chromewebstore.google.com/detail/ezpp/aimihpobjpagjiakhcpijibnaafdniol
Descrizione Calculate pp for a beatmap directly in your browser.
Dimensione del File 759 KB
Conteggio Installazioni 43,817
Versione Corrente 1.10.2
Ultimo Aggiornamento 2021-03-23
Data di Pubblicazione 2020-01-08
Valutazione 4.78/5 Totale 263 Valutazioni
Sviluppatore oamaok
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/oamaok/ezpp
URL della Pagina di Aiuto https://github.com/oamaok/ezpp/issues
Lingue Supportate 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\/"
    ]
}