Krunker CSS Extender

Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities…

Co to jest Krunker CSS Extender?

Krunker CSS Extender to rozszerzenie Chrome opracowane przez MashToolz, a jego główną funkcją jest „Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Krunker CSS Extender

Pobierz pliki rozszerzeń Krunker CSS Extender w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities to style elements on Krunker.io by watching the DOM for changes and adds data attributes that can be selected via CSS. An example for this would be wanting to only style elements that contain the text "[DEV]" (see screenshot below) and re-color them. More selectors will be added over time when requested.                    

Podstawowe informacje o rozszerzeniu

Nazwa Krunker CSS Extender Krunker CSS Extender
ID aelokamchkjleoeepkpihjogohkahbkj
Oficjalny URL https://chrome.google.com/webstore/detail/krunker-css-extender/aelokamchkjleoeepkpihjogohkahbkj
Opis Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities…
Rozmiar pliku 20.49 KB
Liczba instalacji 23
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-12-09
Data Publikacji 2021-12-09
Deweloper MashToolz
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Krunker CSS Extender",
    "version": "1.0.0",
    "background": {
        "scripts": []
    },
    "icons": {
        "256": "favicon.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/krunker.io\/*"
            ]
        }
    ]
}