Toggle Class
With this extension, you can toggle a class on an element.
Co je Toggle Class?
Toggle Class je rozšíření Chrome vyvinuté Morten Gustafsson, a jeho hlavní funkcí je „With this extension, you can toggle a class on an element.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Toggle Class
Stáhněte si soubory rozšíření Toggle Class ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | bdjmfkafjbndalemmcfmkmbegmaobien |
Oficiální URL | https://chrome.google.com/webstore/detail/toggle-class/bdjmfkafjbndalemmcfmkmbegmaobien |
Popis | With this extension, you can toggle a class on an element. |
Velikost souboru | 97.75 KB |
Počet instalací | 36 |
Aktuální Verze | 1.1.2 |
Poslední Aktualizace | 2014-05-28 |
Datum Vydání | 2014-05-28 |
Hodnocení | 5.00/5 Celkem 5 Hodnocení |
Vývojář | Morten Gustafsson |
Typ Platby | free |
Webové stránky Rozšíření | http://www.mortengustafsson.dk |
Podporované Jazyky | 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" } } |