DOM Highlighter
Highlight DOM elements
What is DOM Highlighter?
DOM Highlighter is a Chrome extension developed by Yuri Labzin, and its main feature is "Highlight DOM elements".
Extension Screenshots
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
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.
Extension Basic Information
Name | DOM Highlighter |
ID | cgmagalnhglnafodhkkojjiaejpdkbho |
Official URL | https://chromewebstore.google.com/detail/dom-highlighter/cgmagalnhglnafodhkkojjiaejpdkbho |
Description | Highlight DOM elements |
File Size | 52.1 KB |
Installation Count | 642 |
Current Version | 0.1.4 |
Last Updated | 2019-09-04 |
Publish Date | 2019-09-04 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Yuri Labzin |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/YuriLabzin/dom-highlighter |
Supported Languages | 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" ] } |