osu! preview
Preview an osu! beatmap in your browser.
Vad är osu! preview?
osu! preview är en Chrome-tillägg utvecklad av Jerry Zhu, och dess huvudfunktion är "Preview an osu! beatmap in your browser.".
Tilläggsskärmbilder
Ladda ner osu! preview-förlängningens CRX-fil
Ladda ner osu! preview-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
This extension allows you to preview the gameplay of a beatmap without having to download the map. - Supports most osu! standard maps and osu! mania maps (may break on older maps). - Plays preview audio synchronized with hit objects - Can seek to any point in the map
Grundläggande Information om Tillägg
Namn | osu! preview |
ID | higcadegkhhhjcljhpggammlhmlbdcmc |
Officiell webbadress | https://chromewebstore.google.com/detail/osu-preview/higcadegkhhhjcljhpggammlhmlbdcmc |
Beskrivning | Preview an osu! beatmap in your browser. |
Filstorlek | 380 KB |
Antal Installationer | 4,166 |
Aktuell Version | 0.0.6 |
Senast Uppdaterad | 2022-01-25 |
Publiceringsdatum | 2019-03-07 |
Betyg | 4.00/5 Totalt 27 Betyg |
Utvecklare | Jerry Zhu |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/JerryZhu99/osu-preview |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "osu! preview", "description": "Preview an osu! beatmap in your browser.", "version": "0.0.6", "icons": { "48": "icon48.png", "128": "icon128.png" }, "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", "https:\/\/*.ppy.sh\/", "http:\/\/*.ppy.sh\/" ] } |