ezpp!
Calculate pp for a beatmap directly in your browser.
ezpp!とは何ですか?
ezpp!はoamaokによって開発されたChromeの拡張機能で、その主な機能は「Calculate pp for a beatmap directly in your browser.」です。
拡張機能のスクリーンショット
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                     拡張機能の基本情報
| 名前 |   |  
| 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 | 
| Eメール | [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\/"
    ]
}  |  |