ezpp! experimental

Calculate pp for a beatmap directly in your browser.

ezpp! experimental란 무엇입니까?

ezpp! experimental은(는) PerfectBoat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calculate pp for a beatmap directly in your browser."입니다.

확장 프로그램 스크린샷

screenshot

ezpp! experimental 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        **This extension is a fork/experimental version of ezpp!.**

This extension basically does almost same as ezpp!, but it has more (experimental, or draft) features (and some features will be added to ezpp! at some point).

ezpp! allows you to calculate the osu! pp values for a given beatmap directly in the browser. Just go to a beatmap's page, unranked or not, and click the extension. No login or API key required.

This extension is open source and can be found here: https://github.com/acrylic-style/ezpp/tree/experimental

Changelog is available here: https://next.acrylicstyle.xyz/ezpp.html#ezpp_experimental

You may also want to check this original extension (which is stable): https://chrome.google.com/webstore/detail/ezpp/aimihpobjpagjiakhcpijibnaafdniol                    

확장 프로그램 기본 정보

이름 ezpp! experimental ezpp! experimental
ID iihpkkdlbfcanaaignnjcgmlhhbpoioh
공식 URL https://chromewebstore.google.com/detail/ezpp-experimental/iihpkkdlbfcanaaignnjcgmlhhbpoioh
설명 Calculate pp for a beatmap directly in your browser.
파일 크기 805 KB
설치 횟수 149
현재 버전 1.11.2
최근 업데이트 2021-06-17
출시 날짜 2021-06-12
평점 5.00/5 총 1 개의 평점
개발자 PerfectBoat
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/acrylic-style/ezpp/tree/experimental
도움말 페이지 URL https://github.com/acrylic-style/ezpp/discussions
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ezpp! experimental",
    "description": "Calculate pp for a beatmap directly in your browser.",
    "version": "1.11.2",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/osu.ppy.sh\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.ppy.sh\/"
    ]
}