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)开发的Chrome扩展程序,该扩展的主要功能是“Extends the Developer Tools and context menu, adding a sidebar that displays the css path of DOM element.”。

扩展截图

screenshot
screenshot

下载Copy Css Selector扩展crx文件

下载Copy Css Selector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
            ]
        }
    ]
}