DOM HIGHLIGHTER

A dom highlighter for front-end developer.

What is DOM HIGHLIGHTER?

DOM HIGHLIGHTER is a Chrome extension developed by http://www.44ux.com, and its main feature is "A dom highlighter for front-end developer.".

Extension Screenshots

screenshot

Download DOM HIGHLIGHTER Extension CRX File

Download DOM HIGHLIGHTER 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

                        A dom highlighter for front-end developer.                    

Extension Basic Information

Name DOM HIGHLIGHTER DOM HIGHLIGHTER
ID pkljnnogdmlajgaoodihioopfdkpgjgg
Official URL https://chrome.google.com/webstore/detail/dom-highlighter/pkljnnogdmlajgaoodihioopfdkpgjgg
Description A dom highlighter for front-end developer.
File Size 87.63 KB
Installation Count 3,181
Current Version 1.2
Last Updated 2013-11-25
Publish Date 2013-11-25
Rating 2.60/5 Total 5 Ratings
Developer http://www.44ux.com
Payment Type free
Extension Website http://44ux.com
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DOM HIGHLIGHTER",
    "version": "1.2",
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "DOM HIGHLIGHTER",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "19": "images\/icon19.png",
        "38": "images\/icon38.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}