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
Eメール [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"
    ]
}