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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |