CSS Picker (beta)
Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.
什么是CSS Picker (beta)?
CSS Picker (beta)是由konstantin.oficerov开发的Chrome扩展程序,该扩展的主要功能是“Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.”。
扩展截图
下载CSS Picker (beta)扩展crx文件
下载CSS Picker (beta)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple for usage extension will allow you to copy styles and behavior of selected element in ease.
It is able to collect whole bunch of CSS rules related to selected DOM element and has simpliest interface and pleasant design.
Chrome debugger is not always able to collect all rules in one place, but CSS Picker is!
Rules are separated with tabs, thus you can easily choose what exactly you need to copy whether it is :pseudo_class, whether ::pseudo_element or simply pack of rules related to single element. 扩展基本信息
| 名称 | |
| ID | ndbhnmhkplkehbnjckcdlmcicflinjnl |
| 官方URL | https://chrome.google.com/webstore/detail/css-picker-beta/ndbhnmhkplkehbnjckcdlmcicflinjnl |
| 简介 | Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element. |
| 文件大小 | 391 KB |
| 安装次数 | 925 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2015-06-26 |
| 上架时间 | 2015-06-26 |
| 评分 | 3.67/5 共3次评分 |
| 开发者 | konstantin.oficerov |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "CSS Picker (beta)",
"version": "1.0.1",
"description": "Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.",
"icons": {
"256": "dest\/icon.png"
},
"content_scripts": [
{
"js": [
"dest\/lib.min.js",
"dest\/content.js"
],
"css": [
"dest\/content.css"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"options_page": "templates\/options.html",
"browser_action": {
"default_icon": {
"256": "dest\/icon.png"
},
"default_title": "CSS Picker",
"default_popup": "templates\/popup.html"
},
"background": {
"persistent": true,
"scripts": [
"dest\/lib.min.js",
"dest\/app.js"
]
},
"author": "Konstantin Oficerov",
"permissions": [
"tabs",
"browsingData",
"contextMenus",
"storage",
"declarativeContent",
"fontSettings",
"clipboardRead",
"clipboardWrite"
],
"storage": {
"managed_schema": "schema.json"
}
} | |