Krunker CSS Extender
Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities…
Что такое Krunker CSS Extender?
Krunker CSS Extender - это расширение Chrome, разработанное MashToolz, и его основная функция - "Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities…".
Снимки экрана расширения
Скачать файл CRX расширения Krunker CSS Extender
Скачайте файлы расширений Krunker CSS Extender в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | aelokamchkjleoeepkpihjogohkahbkj |
Официальный URL | https://chrome.google.com/webstore/detail/krunker-css-extender/aelokamchkjleoeepkpihjogohkahbkj |
Описание | Since you cannot select elements via CSS depending on their innerText for example, this extension aims to extend the capabilities… |
Размер файла | 20.49 KB |
Количество установок | 23 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2021-12-09 |
Дата публикации | 2021-12-09 |
Разработчик | MashToolz |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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\/*" ] } ] } |