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
官方網址 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
電子郵箱 [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"
    }
}