ezpp!

Calculate pp for a beatmap directly in your browser.

ezpp!คืออะไร?

ezpp! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oamaok และคุณลักษณะหลักของมันคือ "Calculate pp for a beatmap directly in your browser."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ezpp!

ดาวน์โหลดไฟล์ส่วนขยาย ezpp! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/oamaok/ezpp                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ezpp! ezpp!
ID aimihpobjpagjiakhcpijibnaafdniol
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ezpp/aimihpobjpagjiakhcpijibnaafdniol
คำอธิบาย Calculate pp for a beatmap directly in your browser.
ขนาดไฟล์ 759 KB
จำนวนการติดตั้ง 43,817
เวอร์ชันปัจจุบัน 1.10.2
อัปเดตครั้งล่าสุด 2021-03-23
วันที่เผยแพร่ 2020-01-08
คะแนน 4.78/5 รวมทั้งหมด 263 คะแนน
ผู้พัฒนา oamaok
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/oamaok/ezpp
URL หน้าช่วยเหลือ https://github.com/oamaok/ezpp/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ezpp!",
    "description": "Calculate pp for a beatmap directly in your browser.",
    "version": "1.10.2",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/osu.ppy.sh\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/*.ppy.sh\/",
        "http:\/\/*.ppy.sh\/"
    ]
}