Toggle Class
With this extension, you can toggle a class on an element.
Cos'è Toggle Class?
Toggle Class è un'estensione di Chrome sviluppata da Morten Gustafsson, e la sua funzione principale è "With this extension, you can toggle a class on an element.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Toggle Class
Scarica i file di estensione Toggle Class in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | bdjmfkafjbndalemmcfmkmbegmaobien |
URL Ufficiale | https://chrome.google.com/webstore/detail/toggle-class/bdjmfkafjbndalemmcfmkmbegmaobien |
Descrizione | With this extension, you can toggle a class on an element. |
Dimensione del File | 97.75 KB |
Conteggio Installazioni | 36 |
Versione Corrente | 1.1.2 |
Ultimo Aggiornamento | 2014-05-28 |
Data di Pubblicazione | 2014-05-28 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | Morten Gustafsson |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.mortengustafsson.dk |
Lingue Supportate | 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" } } |