ezpp!

Calculate pp for a beatmap directly in your browser.

什么是ezpp!?

ezpp!是由oamaok开发的Chrome扩展程序,该扩展的主要功能是“Calculate pp for a beatmap directly in your browser.”。

扩展截图

screenshot

下载ezpp!扩展crx文件

下载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\/"
    ]
}