osu! preview
Preview an osu! beatmap in your browser.
Qu'est-ce que osu! preview ?
osu! preview est une extension Chrome développée par Jerry Zhu, et sa fonction principale est "Preview an osu! beatmap in your browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension osu! preview
Téléchargez les fichiers d'extension osu! preview au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | osu! preview |
ID | higcadegkhhhjcljhpggammlhmlbdcmc |
URL Officiel | https://chromewebstore.google.com/detail/osu-preview/higcadegkhhhjcljhpggammlhmlbdcmc |
Description | Preview an osu! beatmap in your browser. |
Taille du Fichier | 380 KB |
Nombre d'Installations | 4,166 |
Version Actuelle | 0.0.6 |
Dernière Mise à Jour | 2022-01-25 |
Date de Publication | 2019-03-07 |
Évaluation | 4.00/5 Total 27 Évaluations |
Développeur | Jerry Zhu |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/JerryZhu99/osu-preview |
Langues Prises en Charge | 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\/" ] } |