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
官方網址 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"
    ]
}