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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        🖥️ 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
이메일 [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"
    }
}