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 |
官方網址 | 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" } } |