pp calculator

Calculates the osu! pp values directly in your web browser

Was ist pp calculator?

pp calculator ist eine Chrome-Erweiterung, die von abstrakt entwickelt wurde, und ihr Hauptmerkmal ist "Calculates the osu! pp values directly in your web browser".

Erweiterungsscreenshots

screenshot

pp calculator-Erweiterungs-CRX-Datei herunterladen

Laden Sie pp calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        🖥️ 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                    

Grundlegende Informationen zur Erweiterung

Name pp calculator pp calculator
ID eoelpnjffjkdmfhfinfbgiejnbgihpdn
Offizielle URL https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn
Beschreibung Calculates the osu! pp values directly in your web browser
Dateigröße 1.36 MB
Installationsanzahl 32,536
Aktuelle Version 1.2.0
Letztes Update 2023-03-29
Veröffentlichungsdatum 2022-01-13
Bewertung 4.94/5 Insgesamt 52 Bewertungen
Entwickler abstrakt
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://discord.com/invite/Cm5W9QcNXB
Unterstützte Sprachen 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"
    }
}