Elements highlighter

Highlights items by css class prefix or attribute name

Co to jest Elements highlighter?

Elements highlighter to rozszerzenie Chrome opracowane przez Egor Ivanov, a jego główną funkcją jest „Highlights items by css class prefix or attribute name”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Elements highlighter

Pobierz pliki rozszerzeń Elements highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Elements highlighter Elements highlighter
ID jkklghcbhnagpddobffcifghgmkmojjf
Oficjalny URL https://chromewebstore.google.com/detail/elements-highlighter/jkklghcbhnagpddobffcifghgmkmojjf
Opis Highlights items by css class prefix or attribute name
Rozmiar pliku 198 KB
Liczba instalacji 52
Aktualna Wersja 1.10.0
Ostatnia Aktualizacja 2020-05-23
Data Publikacji 2020-05-22
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Egor Ivanov
Typ Płatności free
Obsługiwane Języki 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
}