Copy Css Selector

Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.

Wat is Copy Css Selector?

Copy Css Selector is een Chrome-extensie ontwikkeld door Alexander Chermyanin (flamencist), en de belangrijkste functie is "Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Copy Css Selector

Download Copy Css Selector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Copy Css Selector Copy Css Selector
ID kemkenbgbgodoglfkkejbdcpojnodnkg
Officiële URL https://chromewebstore.google.com/detail/copy-css-selector/kemkenbgbgodoglfkkejbdcpojnodnkg
Beschrijving Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.
Bestandsgrootte 19.31 KB
Aantal Installaties 10,000
Huidige Versie 0.5.0.3
Laatst Bijgewerkt 2018-10-20
Publicatiedatum 2018-10-20
Beoordeling 3.91/5 Totaal 22 Beoordelingen
Ontwikkelaar Alexander Chermyanin (flamencist)
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/flamencist/CopyCssSelector
Help Pagina-URL https://github.com/flamencist/CopyCssSelector/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}