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"
}
} | |