Elements highlighter

Highlights items by css class prefix or attribute name

What is Elements highlighter?

Elements highlighter is a Chrome extension developed by Egor Ivanov, and its main feature is "Highlights items by css class prefix or attribute name".

Extension Screenshots

screenshot

Download Elements highlighter Extension CRX File

Download Elements 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

                        Red color for items that have highlighted children. Blue for items without highlighted children.                    

Extension Basic Information

Name Elements highlighter Elements highlighter
ID jkklghcbhnagpddobffcifghgmkmojjf
Official URL https://chromewebstore.google.com/detail/elements-highlighter/jkklghcbhnagpddobffcifghgmkmojjf
Description Highlights items by css class prefix or attribute name
File Size 198 KB
Installation Count 52
Current Version 1.10.0
Last Updated 2020-05-23
Publish Date 2020-05-22
Rating 5.00/5 Total 3 Ratings
Developer Egor Ivanov
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Elements highlighter",
    "description": "Highlights items by css class prefix or attribute name",
    "version": "1.10.0",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/highlightElements.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "commands": {
        "highlight": {
            "suggested_key": {
                "default": "Ctrl+H",
                "mac": "MacCtrl+H"
            },
            "description": "Highlight elements"
        }
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "Highlight elements",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "96": "images\/icon96.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}