ezpp!

Calculate pp for a beatmap directly in your browser.

ezpp! क्या है?

ezpp! oamaok द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Calculate pp for a beatmap directly in your browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ezpp! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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\/"
    ]
}