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
擴展基本資訊
名稱 | ezpp! |
ID | aimihpobjpagjiakhcpijibnaafdniol |
官方網址 | 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\/" ] } |