pp calculator

Calculates the osu! pp values directly in your web browser

Hvad er pp calculator?

pp calculator er en Chrome-udvidelse udviklet af abstrakt, og dens hovedfunktion er "Calculates the osu! pp values directly in your web browser".

Udvidelsesskærmbilleder

screenshot

Download pp calculator-udvidelses-CRX-fil

Download pp calculator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        🖥️ Calculate how much osu! pp you can earn directly in your web browser
🚀 Up to date with the latest rework: 2022.09
🥁 Support for all game modes (osu!, taiko, mania, catch)
🦭 For support and suggestions join the Discord server found in the "Support" tab                    

Grundlæggende oplysninger om udvidelsen

Navn pp calculator pp calculator
ID eoelpnjffjkdmfhfinfbgiejnbgihpdn
Officiel URL https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn
Beskrivelse Calculates the osu! pp values directly in your web browser
Filstørrelse 1.36 MB
Antal Installationer 32,536
Nuværende Version 1.2.0
Senest Opdateret 2023-03-29
Udgivelsesdato 2022-01-13
Bedømmelse 4.94/5 Samlet 52 Bedømmelser
Udvikler abstrakt
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://discord.com/invite/Cm5W9QcNXB
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.2.0",
    "name": "pp calculator",
    "description": "Calculates the osu! pp values directly in your web browser",
    "action": {
        "default_title": "pp calculator",
        "default_popup": "popup.html",
        "default_icon": {
            "128": "icons\/icon_128.png"
        }
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/osu.ppy.sh\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self'"
    },
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "*:\/\/*.ppy.sh\/"
    ],
    "icons": {
        "128": "icons\/icon_128.png"
    }
}