Toggle checkboxes
Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.
ما هو Toggle checkboxes؟
Toggle checkboxes هو إضافة Chrome تم تطويرها بواسطة https://shubhamsonar.com، والميزة الرئيسية لها هي "Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Toggle checkboxes
قم بتنزيل ملفات الامتداد Toggle checkboxes بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension will help you Check OR Uncheck all checkbox fields on the page using a single click. It will only work for checkboxes which are readable and are not disabled to respect integrity of the UX provided by website providers. It shall also not work with websites which use custom checkbox elements than traditional checkbox elements. This is a small yet a powerful productivity tool, use with caution only where its needed at your own responsibility. Hope this saves some time for you ❤️ Best, Shubham Sonar
معلومات أساسية عن التمديد
الاسم | Toggle checkboxes |
ID | hjnjacpbkjdiolbimbbfkfcnjmaojgad |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/toggle-checkboxes/hjnjacpbkjdiolbimbbfkfcnjmaojgad |
الوصف | Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page. |
حجم الملف | 8.42 KB |
عدد التثبيتات | 47 |
النسخة الحالية | 1.0 |
آخر تحديث | 2024-01-03 |
تاريخ النشر | 2023-10-12 |
المطور | https://shubhamsonar.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://shubhamsonar.com |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Toggle checkboxes", "description": "Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.", "version": "1.0", "manifest_version": 3, "action": { "default_title": "Click to toggle all checkboxes", "default_icon": { "128": ".\/icons\/128.png", "48": ".\/icons\/48.png", "32": ".\/icons\/32.png", "16": ".\/icons\/16.png" } }, "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "icons": { "128": ".\/icons\/128.png", "48": ".\/icons\/48.png", "32": ".\/icons\/32.png", "16": ".\/icons\/16.png" } } |