osu! preview
Preview an osu! beatmap in your browser.
osu! previewとは何ですか?
osu! previewはJerry Zhuによって開発されたChromeの拡張機能で、その主な機能は「Preview an osu! beatmap in your browser.」です。
拡張機能のスクリーンショット
osu! preview拡張機能のCRXファイルをダウンロード
osu! preview拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | osu! preview |
ID | higcadegkhhhjcljhpggammlhmlbdcmc |
公式URL | https://chromewebstore.google.com/detail/osu-preview/higcadegkhhhjcljhpggammlhmlbdcmc |
説明 | Preview an osu! beatmap in your browser. |
ファイルサイズ | 380 KB |
インストール数 | 4,166 |
現在のバージョン | 0.0.6 |
最終更新日 | 2022-01-25 |
公開日 | 2019-03-07 |
評価 | 4.00/5 合計 27 レビュー |
開発者 | Jerry Zhu |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/JerryZhu99/osu-preview |
対応言語 | 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\/" ] } |