osu! preview
Preview an osu! beatmap in your browser.
Apa itu osu! preview?
osu! preview adalah ekstensi Chrome yang dikembangkan oleh Jerry Zhu, dan fitur utamanya adalah "Preview an osu! beatmap in your browser.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi osu! preview
Unduh file ekstensi osu! preview dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | osu! preview |
ID | higcadegkhhhjcljhpggammlhmlbdcmc |
URL Resmi | https://chromewebstore.google.com/detail/osu-preview/higcadegkhhhjcljhpggammlhmlbdcmc |
Deskripsi | Preview an osu! beatmap in your browser. |
Ukuran File | 380 KB |
Jumlah Instalasi | 4,166 |
Versi Saat Ini | 0.0.6 |
Terakhir Diperbarui | 2022-01-25 |
Tanggal Publikasi | 2019-03-07 |
Penilaian | 4.00/5 Total 27 Penilaian |
Pengembang | Jerry Zhu |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/JerryZhu99/osu-preview |
Bahasa yang Didukung | 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\/" ] } |