Dom Selector

A simple document element selector for styling and tagging purposes.

什么是Dom Selector?

Dom Selector是由Shivam Devs开发的Chrome扩展程序,该扩展的主要功能是“A simple document element selector for styling and tagging purposes.”。

扩展截图

screenshot
screenshot

下载Dom Selector扩展crx文件

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

扩展使用说明

                        Get NodeName, classList, and id along with width, height, display, padding, margin and border of elements without opening Console.                    

扩展基本信息

名称 Dom Selector Dom Selector
ID bmnofgbgldbkkpgpahilcgalnjocgbla
官方URL https://chromewebstore.google.com/detail/dom-selector/bmnofgbgldbkkpgpahilcgalnjocgbla
简介 A simple document element selector for styling and tagging purposes.
文件大小 18.09 KB
安装次数 31
当前版本 2.1.0
更新时间 2022-10-13
上架时间 2022-10-13
评分 5.00/5 共3次评分
开发者 Shivam Devs
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/shivamdevs/Dom-Selector
隐私政策页面URL https://www.termsfeed.com/live/f552c885-d14f-47c5-864d-1ded40f9e755
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dom Selector",
    "version": "2.1.0",
    "description": "A simple document element selector for styling and tagging purposes.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "selector.js"
            ]
        }
    ],
    "background": {
        "service_workers": "background.js"
    },
    "action": {
        "default_popup": "selector.html",
        "default_title": "Dom Selector",
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "36": "icons\/icon36.png",
            "48": "icons\/icon48.png"
        }
    },
    "permissions": [
        "storage"
    ]
}