pp calculator

Calculates the osu! pp values directly in your web browser

What is pp calculator?

pp calculator is a Chrome extension developed by abstrakt, and its main feature is "Calculates the osu! pp values directly in your web browser".

Extension Screenshots

screenshot

Download pp calculator Extension CRX File

Download pp calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name pp calculator pp calculator
ID eoelpnjffjkdmfhfinfbgiejnbgihpdn
Official URL https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn
Description Calculates the osu! pp values directly in your web browser
File Size 1.36 MB
Installation Count 32,536
Current Version 1.2.0
Last Updated 2023-03-29
Publish Date 2022-01-13
Rating 4.94/5 Total 52 Ratings
Developer abstrakt
Email [email protected]
Payment Type free
Help Page URL https://discord.com/invite/Cm5W9QcNXB
Supported Languages 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"
    }
}