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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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\/"
    ]
}