osu! preview
Preview an osu! beatmap in your browser.
What is osu! preview?
osu! preview is a Chrome extension developed by Jerry Zhu, and its main feature is "Preview an osu! beatmap in your browser.".
Extension Screenshots
Download osu! preview Extension CRX File
Download osu! preview extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | osu! preview |
ID | higcadegkhhhjcljhpggammlhmlbdcmc |
Official URL | https://chromewebstore.google.com/detail/osu-preview/higcadegkhhhjcljhpggammlhmlbdcmc |
Description | Preview an osu! beatmap in your browser. |
File Size | 380 KB |
Installation Count | 4,166 |
Current Version | 0.0.6 |
Last Updated | 2022-01-25 |
Publish Date | 2019-03-07 |
Rating | 4.00/5 Total 27 Ratings |
Developer | Jerry Zhu |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/JerryZhu99/osu-preview |
Supported Languages | 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\/" ] } |