Toggle checkboxes
Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.
Co to jest Toggle checkboxes?
Toggle checkboxes to rozszerzenie Chrome opracowane przez https://shubhamsonar.com, a jego główną funkcją jest „Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Toggle checkboxes
Pobierz pliki rozszerzeń Toggle checkboxes w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Toggle checkboxes |
ID | hjnjacpbkjdiolbimbbfkfcnjmaojgad |
Oficjalny URL | https://chromewebstore.google.com/detail/toggle-checkboxes/hjnjacpbkjdiolbimbbfkfcnjmaojgad |
Opis | Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page. |
Rozmiar pliku | 8.42 KB |
Liczba instalacji | 47 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2024-01-03 |
Data Publikacji | 2023-10-12 |
Deweloper | https://shubhamsonar.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://shubhamsonar.com |
Obsługiwane Języki | 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" } } |