Toggle Class
With this extension, you can toggle a class on an element.
Co to jest Toggle Class?
Toggle Class to rozszerzenie Chrome opracowane przez Morten Gustafsson, a jego główną funkcją jest „With this extension, you can toggle a class on an element.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Toggle Class
Pobierz pliki rozszerzeń Toggle Class 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
With this extension you will be aible to add and toggle a class on a specific element. This can be very useful when styling a website.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | bdjmfkafjbndalemmcfmkmbegmaobien |
Oficjalny URL | https://chrome.google.com/webstore/detail/toggle-class/bdjmfkafjbndalemmcfmkmbegmaobien |
Opis | With this extension, you can toggle a class on an element. |
Rozmiar pliku | 97.75 KB |
Liczba instalacji | 36 |
Aktualna Wersja | 1.1.2 |
Ostatnia Aktualizacja | 2014-05-28 |
Data Publikacji | 2014-05-28 |
Ocena | 5.00/5 Łącznie 5 Oceny |
Deweloper | Morten Gustafsson |
Typ Płatności | free |
Strona Rozszerzenia | http://www.mortengustafsson.dk |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Toggle Class", "description": "With this extension, you can toggle a class on an element.", "version": "1.1.2", "permissions": [ "contextMenus", "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "browser_action": { "default_icon": "active_icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "icons": { "48": "48_icon.png", "128": "128_icon.png" } } |