Level's UI

Adds a custom UI that Level would use in krunker.io

Vad är Level's UI?

Level's UI är en Chrome-tillägg utvecklad av GS Level, och dess huvudfunktion är "Adds a custom UI that Level would use in krunker.io".

Tilläggsskärmbilder

screenshot

Ladda ner Level's UI-förlängningens CRX-fil

Ladda ner Level's UI-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This is my krunker.io custom css/ui that I have put into an extension to make it easier for people to use it. To set the UI scale, you need to go into the settings, search "ui" and then click the button at the side of the UI scale slider, then slide the slider until it is at 0.7, and then click the button again.                    

Grundläggande Information om Tillägg

Namn Level's UI Level's UI
ID bopijmfplaeabkphdiefficheokjencc
Officiell webbadress https://chrome.google.com/webstore/detail/levels-ui/bopijmfplaeabkphdiefficheokjencc
Beskrivning Adds a custom UI that Level would use in krunker.io
Filstorlek 24.04 KB
Antal Installationer 20
Aktuell Version 1.0.0
Senast Uppdaterad 2021-05-10
Publiceringsdatum 2021-05-10
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare GS Level
E-post [email protected]
Betalningssätt free
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Level's UI",
    "description": "Adds a custom UI that Level would use in krunker.io",
    "version": "1.0.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/krunker.io\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Level's UI",
        "default_icon": "LvLTransparent.png"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "storage"
    ]
}