ezpp! experimental
Calculate pp for a beatmap directly in your browser.
Co to jest ezpp! experimental?
ezpp! experimental to rozszerzenie Chrome opracowane przez PerfectBoat, a jego główną funkcją jest „Calculate pp for a beatmap directly in your browser.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ezpp! experimental
Pobierz pliki rozszerzeń ezpp! experimental w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
**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
Podstawowe informacje o rozszerzeniu
Nazwa | ezpp! experimental |
ID | iihpkkdlbfcanaaignnjcgmlhhbpoioh |
Oficjalny URL | https://chromewebstore.google.com/detail/ezpp-experimental/iihpkkdlbfcanaaignnjcgmlhhbpoioh |
Opis | Calculate pp for a beatmap directly in your browser. |
Rozmiar pliku | 805 KB |
Liczba instalacji | 149 |
Aktualna Wersja | 1.11.2 |
Ostatnia Aktualizacja | 2021-06-17 |
Data Publikacji | 2021-06-12 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | PerfectBoat |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/acrylic-style/ezpp/tree/experimental |
Adres URL Strony Pomocy | https://github.com/acrylic-style/ezpp/discussions |
Obsługiwane Języki | 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\/" ] } |