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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Powerful tool for developers which allows to pick whole pack of CSS rules from selected DOM element."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CSS Picker (beta) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |