Krunker CSS Extender
Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities…
Vad är Krunker CSS Extender?
Krunker CSS Extender är en Chrome-tillägg utvecklad av MashToolz, och dess huvudfunktion är "Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities…".
Tilläggsskärmbilder
Ladda ner Krunker CSS Extender-förlängningens CRX-fil
Ladda ner Krunker CSS Extender-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
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.
Grundläggande Information om Tillägg
Namn | |
ID | aelokamchkjleoeepkpihjogohkahbkj |
Officiell webbadress | https://chrome.google.com/webstore/detail/krunker-css-extender/aelokamchkjleoeepkpihjogohkahbkj |
Beskrivning | Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities… |
Filstorlek | 20.49 KB |
Antal Installationer | 23 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2021-12-09 |
Publiceringsdatum | 2021-12-09 |
Utvecklare | MashToolz |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } ] } |