Copy Css Selector
Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.
Was ist Copy Css Selector?
Copy Css Selector ist eine Chrome-Erweiterung, die von Alexander Chermyanin (flamencist) entwickelt wurde, und ihr Hauptmerkmal ist "Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.".
Erweiterungsscreenshots
Copy Css Selector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Css Selector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Copy Css Selector |
ID | kemkenbgbgodoglfkkejbdcpojnodnkg |
Offizielle URL | https://chromewebstore.google.com/detail/copy-css-selector/kemkenbgbgodoglfkkejbdcpojnodnkg |
Beschreibung | Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element. |
Dateigröße | 19.31 KB |
Installationsanzahl | 10,000 |
Aktuelle Version | 0.5.0.3 |
Letztes Update | 2018-10-20 |
Veröffentlichungsdatum | 2018-10-20 |
Bewertung | 3.91/5 Insgesamt 22 Bewertungen |
Entwickler | Alexander Chermyanin (flamencist) |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/flamencist/CopyCssSelector |
Hilfeseite URL | https://github.com/flamencist/CopyCssSelector/issues |
Unterstützte Sprachen | 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" ] } ] } |