Copy Css Selector
Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.
Copy Css Selector क्या है?
Copy Css Selector Alexander Chermyanin (flamencist) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Copy Css Selector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Find the unique selector for any element on page. It will find an optimal selector that’s unique to the element selected. Right click on the element with mouse and select Copy Css Selector menu item into buffer, so you can past copied selector to any text editor. Very useful for quickly getting selector for any element for testing frameworks like as Selenium.
एक्सटेंशन की मूल जानकारी
नाम | Copy Css Selector |
ID | kemkenbgbgodoglfkkejbdcpojnodnkg |
आधिकारिक URL | https://chromewebstore.google.com/detail/copy-css-selector/kemkenbgbgodoglfkkejbdcpojnodnkg |
विवरण | Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element. |
फ़ाइल का आकार | 19.31 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 0.5.0.3 |
अंतिम अपडेट | 2018-10-20 |
प्रकाशन तिथि | 2018-10-20 |
रेटिंग | 3.91/5 कुल 22 रेटिंग्स |
डेवलपर | Alexander Chermyanin (flamencist) |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/flamencist/CopyCssSelector |
सहायता पृष्ठ URL | https://github.com/flamencist/CopyCssSelector/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Css Selector", "short_name": "CopyCssSelector", "version": "0.5.0.3", "description": "Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.", "devtools_page": "devtools.html", "background": { "page": "background.html" }, "manifest_version": 2, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "author": "Alexander Chermyanin (flamencist)", "offline_enabled": true, "permissions": [ "contextMenus", "activeTab", "clipboardWrite" ], "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "js\/selector-generator.js", "js\/content.js" ], "css": [ "css\/style.css" ] } ] } |