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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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\/" ] } |