Toggle Class
With this extension, you can toggle a class on an element.
Toggle Classとは何ですか?
Toggle ClassはMorten Gustafssonによって開発されたChromeの拡張機能で、その主な機能は「With this extension, you can toggle a class on an element.」です。
拡張機能のスクリーンショット
Toggle Class拡張機能のCRXファイルをダウンロード
Toggle Class拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | bdjmfkafjbndalemmcfmkmbegmaobien |
公式URL | https://chrome.google.com/webstore/detail/toggle-class/bdjmfkafjbndalemmcfmkmbegmaobien |
説明 | With this extension, you can toggle a class on an element. |
ファイルサイズ | 97.75 KB |
インストール数 | 36 |
現在のバージョン | 1.1.2 |
最終更新日 | 2014-05-28 |
公開日 | 2014-05-28 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | Morten Gustafsson |
支払い方法 | free |
拡張機能のウェブサイト | http://www.mortengustafsson.dk |
対応言語 | 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" } } |