DOM Highlighter

Highlight DOM elements

Co to jest DOM Highlighter?

DOM Highlighter to rozszerzenie Chrome opracowane przez Yuri Labzin, a jego główną funkcją jest „Highlight DOM elements”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia DOM Highlighter

Pobierz pliki rozszerzeń DOM 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

                        Clicking on the extension icon activates/deactivates the DOM highlighting of the page elements of the current tab.
In the settings window, you can set the parameters of the highlight lines and limit the highlighting of elements by the mask of selectors.                    

Podstawowe informacje o rozszerzeniu

Nazwa DOM Highlighter DOM Highlighter
ID cgmagalnhglnafodhkkojjiaejpdkbho
Oficjalny URL https://chromewebstore.google.com/detail/dom-highlighter/cgmagalnhglnafodhkkojjiaejpdkbho
Opis Highlight DOM elements
Rozmiar pliku 52.1 KB
Liczba instalacji 642
Aktualna Wersja 0.1.4
Ostatnia Aktualizacja 2019-09-04
Data Publikacji 2019-09-04
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Yuri Labzin
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/YuriLabzin/dom-highlighter
Obsługiwane Języki en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "version": "0.1.4",
    "manifest_version": 2,
    "author": "Yuri Labzin",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "assets\/images\/icons\/default-16.png",
        "48": "assets\/images\/icons\/default-48.png",
        "128": "assets\/images\/icons\/default-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/images\/icons\/default-16.png",
            "48": "assets\/images\/icons\/default-48.png",
            "128": "assets\/images\/icons\/default-128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "contextMenus",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "settings-popup\/settings-popup.html",
        "assets\/images\/icons\/active-48.png",
        "assets\/images\/icons\/default-48.png",
        "assets\/images\/close-icon.svg"
    ]
}