ezpp!

Calculate pp for a beatmap directly in your browser.

Apa itu ezpp!?

ezpp! adalah ekstensi Chrome yang dikembangkan oleh oamaok, dan fitur utamanya adalah "Calculate pp for a beatmap directly in your browser.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ezpp!

Unduh file ekstensi ezpp! dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama ezpp! ezpp!
ID aimihpobjpagjiakhcpijibnaafdniol
URL Resmi https://chromewebstore.google.com/detail/ezpp/aimihpobjpagjiakhcpijibnaafdniol
Deskripsi Calculate pp for a beatmap directly in your browser.
Ukuran File 759 KB
Jumlah Instalasi 43,817
Versi Saat Ini 1.10.2
Terakhir Diperbarui 2021-03-23
Tanggal Publikasi 2020-01-08
Penilaian 4.78/5 Total 263 Penilaian
Pengembang oamaok
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/oamaok/ezpp
URL Halaman Bantuan https://github.com/oamaok/ezpp/issues
Bahasa yang Didukung 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\/"
    ]
}