osu! preview

Preview an osu! beatmap in your browser.

Wat is osu! preview?

osu! preview is een Chrome-extensie ontwikkeld door Jerry Zhu, en de belangrijkste functie is "Preview an osu! beatmap in your browser.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie osu! preview

Download osu! preview-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam osu! preview osu! preview
ID higcadegkhhhjcljhpggammlhmlbdcmc
Officiële URL https://chromewebstore.google.com/detail/osu-preview/higcadegkhhhjcljhpggammlhmlbdcmc
Beschrijving Preview an osu! beatmap in your browser.
Bestandsgrootte 380 KB
Aantal Installaties 4,166
Huidige Versie 0.0.6
Laatst Bijgewerkt 2022-01-25
Publicatiedatum 2019-03-07
Beoordeling 4.00/5 Totaal 27 Beoordelingen
Ontwikkelaar Jerry Zhu
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/JerryZhu99/osu-preview
Ondersteunde Talen 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\/"
    ]
}