pp calculator

Calculates the osu! pp values directly in your web browser

pp calculatorとは何ですか?

pp calculatorはabstraktによって開発されたChromeの拡張機能で、その主な機能は「Calculates the osu! pp values directly in your web browser」です。

拡張機能のスクリーンショット

screenshot

pp calculator拡張機能のCRXファイルをダウンロード

pp calculator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 pp calculator pp calculator
ID eoelpnjffjkdmfhfinfbgiejnbgihpdn
公式URL https://chromewebstore.google.com/detail/pp-calculator/eoelpnjffjkdmfhfinfbgiejnbgihpdn
説明 Calculates the osu! pp values directly in your web browser
ファイルサイズ 1.36 MB
インストール数 32,536
現在のバージョン 1.2.0
最終更新日 2023-03-29
公開日 2022-01-13
評価 4.94/5 合計 52 レビュー
開発者 abstrakt
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://discord.com/invite/Cm5W9QcNXB
対応言語 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"
    }
}