Krunker CSS Extender
Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities…
Cos'è Krunker CSS Extender?
Krunker CSS Extender è un'estensione di Chrome sviluppata da MashToolz, e la sua funzione principale è "Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Krunker CSS Extender
Scarica i file di estensione Krunker CSS Extender 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
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.
Informazioni di Base sull'Estensione
Nome | |
ID | aelokamchkjleoeepkpihjogohkahbkj |
URL Ufficiale | https://chrome.google.com/webstore/detail/krunker-css-extender/aelokamchkjleoeepkpihjogohkahbkj |
Descrizione | Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities… |
Dimensione del File | 20.49 KB |
Conteggio Installazioni | 23 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-12-09 |
Data di Pubblicazione | 2021-12-09 |
Sviluppatore | MashToolz |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } ] } |