Dom Selector

A simple document element selector for styling and tagging purposes.

What is Dom Selector?

Dom Selector is a Chrome extension developed by Shivam Devs, and its main feature is "A simple document element selector for styling and tagging purposes.".

Extension Screenshots

screenshot
screenshot

Download Dom Selector Extension CRX File

Download Dom Selector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Dom Selector Dom Selector
ID bmnofgbgldbkkpgpahilcgalnjocgbla
Official URL https://chromewebstore.google.com/detail/dom-selector/bmnofgbgldbkkpgpahilcgalnjocgbla
Description A simple document element selector for styling and tagging purposes.
File Size 18.09 KB
Installation Count 31
Current Version 2.1.0
Last Updated 2022-10-13
Publish Date 2022-10-13
Rating 5.00/5 Total 3 Ratings
Developer Shivam Devs
Email [email protected]
Payment Type free
Extension Website https://github.com/shivamdevs/Dom-Selector
Privacy Policy Page URL https://www.termsfeed.com/live/f552c885-d14f-47c5-864d-1ded40f9e755
Supported Languages 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"
    ]
}