CSS Picker (beta)
Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.
What is CSS Picker (beta)?
CSS Picker (beta) is a Chrome extension developed by konstantin.oficerov, and its main feature is "Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element.".
Extension Screenshots
Download CSS Picker (beta) Extension CRX File
Download CSS Picker (beta) 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
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.
Extension Basic Information
Name | |
ID | ndbhnmhkplkehbnjckcdlmcicflinjnl |
Official URL | https://chrome.google.com/webstore/detail/css-picker-beta/ndbhnmhkplkehbnjckcdlmcicflinjnl |
Description | Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element. |
File Size | 391 KB |
Installation Count | 925 |
Current Version | 1.0.1 |
Last Updated | 2015-06-26 |
Publish Date | 2015-06-26 |
Rating | 3.67/5 Total 3 Ratings |
Developer | konstantin.oficerov |
Payment Type | free |
Supported Languages | 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" } } |