ezpp!
Calculate pp for a beatmap directly in your browser.
Vad är ezpp!?
ezpp! är en Chrome-tillägg utvecklad av oamaok, och dess huvudfunktion är "Calculate pp for a beatmap directly in your browser.".
Tilläggsskärmbilder
Ladda ner ezpp!-förlängningens CRX-fil
Ladda ner ezpp!-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | aimihpobjpagjiakhcpijibnaafdniol |
| Officiell webbadress | https://chromewebstore.google.com/detail/ezpp/aimihpobjpagjiakhcpijibnaafdniol |
| Beskrivning | Calculate pp for a beatmap directly in your browser. |
| Filstorlek | 759 KB |
| Antal Installationer | 43,817 |
| Aktuell Version | 1.10.2 |
| Senast Uppdaterad | 2021-03-23 |
| Publiceringsdatum | 2020-01-08 |
| Betyg | 4.78/5 Totalt 263 Betyg |
| Utvecklare | oamaok |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/oamaok/ezpp |
| Hjälpsida URL | https://github.com/oamaok/ezpp/issues |
| Stödda Språk | 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\/"
]
} | |