osu! preview

Preview an osu! beatmap in your browser.

Cos'è osu! preview?

osu! preview è un'estensione di Chrome sviluppata da Jerry Zhu, e la sua funzione principale è "Preview an osu! beatmap in your browser.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione osu! preview

Scarica i file di estensione osu! preview in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome osu! preview osu! preview
ID higcadegkhhhjcljhpggammlhmlbdcmc
URL Ufficiale https://chromewebstore.google.com/detail/osu-preview/higcadegkhhhjcljhpggammlhmlbdcmc
Descrizione Preview an osu! beatmap in your browser.
Dimensione del File 380 KB
Conteggio Installazioni 4,166
Versione Corrente 0.0.6
Ultimo Aggiornamento 2022-01-25
Data di Pubblicazione 2019-03-07
Valutazione 4.00/5 Totale 27 Valutazioni
Sviluppatore Jerry Zhu
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JerryZhu99/osu-preview
Lingue Supportate 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\/"
    ]
}