Toggle Class
With this extension, you can toggle a class on an element.
What is Toggle Class?
Toggle Class is a Chrome extension developed by Morten Gustafsson, and its main feature is "With this extension, you can toggle a class on an element.".
Extension Screenshots
Download Toggle Class Extension CRX File
Download Toggle Class extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | bdjmfkafjbndalemmcfmkmbegmaobien |
Official URL | https://chrome.google.com/webstore/detail/toggle-class/bdjmfkafjbndalemmcfmkmbegmaobien |
Description | With this extension, you can toggle a class on an element. |
File Size | 97.75 KB |
Installation Count | 36 |
Current Version | 1.1.2 |
Last Updated | 2014-05-28 |
Publish Date | 2014-05-28 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Morten Gustafsson |
Payment Type | free |
Extension Website | http://www.mortengustafsson.dk |
Supported Languages | 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" } } |