Highlight DOM elements
Shift+Cmd+Click to highlight a DOM element, double shift cleans highlights.
What is Highlight DOM elements?
Highlight DOM elements is a Chrome extension developed by iliakan, and its main feature is "Shift+Cmd+Click to highlight a DOM element, double shift cleans highlights.".
Download Highlight DOM elements Extension CRX File
Download Highlight DOM elements 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
Highlights DOM elements on Shift+Click, removes all highlights on dblclick. Useful for presentations in-browser.
Extension Basic Information
Name | ![]() |
ID | hobgcmndcocheeojchljmomaidlplnhg |
Official URL | https://chrome.google.com/webstore/detail/highlight-dom-elements/hobgcmndcocheeojchljmomaidlplnhg |
Description | Shift+Cmd+Click to highlight a DOM element, double shift cleans highlights. |
File Size | 3.89 KB |
Installation Count | 26 |
Current Version | 2.0 |
Last Updated | 2014-10-25 |
Publish Date | 2014-10-25 |
Rating | 1.00/5 Total 1 Ratings |
Developer | iliakan |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Highlight DOM elements", "short_name": "Highlight DOM elements", "description": "Shift+Cmd+Click to highlight a DOM element, double shift cleans highlights.", "version": "2.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "style.css" ], "js": [ "highlight.js" ], "all_frames": true, "run_at": "document_start" } ] } |