ezpp!

Calculate pp for a beatmap directly in your browser.

ezpp! là gì?

ezpp! là một tiện ích mở rộng Chrome được phát triển bởi oamaok, và tính năng chính của nó là "Calculate pp for a beatmap directly in your browser.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ezpp!

Tải xuống các tệp mở rộng ezpp! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ezpp! ezpp!
ID aimihpobjpagjiakhcpijibnaafdniol
URL Chính Thức https://chromewebstore.google.com/detail/ezpp/aimihpobjpagjiakhcpijibnaafdniol
Mô tả Calculate pp for a beatmap directly in your browser.
Kích Thước Tệp 759 KB
Số Lần Cài Đặt 43,817
Phiên Bản Hiện Tại 1.10.2
Cập Nhật Lần Cuối 2021-03-23
Ngày Phát Hành 2020-01-08
Đánh Giá 4.78/5 Tổng số 263 Đánh Giá
Nhà Phát Triển oamaok
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/oamaok/ezpp
URL Trang Trợ Giúp https://github.com/oamaok/ezpp/issues
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}