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文件

下载ezpp! experimental扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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