DOM Overflow

Highlights elements that overflow the viewport

What is DOM Overflow?

DOM Overflow is a Chrome extension developed by http://thepixelforge.co.uk, and its main feature is "Highlights elements that overflow the viewport".

Download DOM Overflow Extension CRX File

Download DOM Overflow 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

                        DOM Overflow is a simple plugin that highlights elements of the DOM overflowing the document width causing unwanted horizontal scrolling.


Credits
- Full Basket by Iulia Ardeleanu from the Noun Project (project icon)                    

Extension Basic Information

Name DOM Overflow DOM Overflow
ID nkaepkjbnbbnflhnpcfejjpckndifhjj
Official URL https://chrome.google.com/webstore/detail/dom-overflow/nkaepkjbnbbnflhnpcfejjpckndifhjj
Description Highlights elements that overflow the viewport
File Size 5.85 KB
Installation Count 46
Current Version 2.0.1
Last Updated 2016-10-28
Publish Date 2016-10-28
Rating 5.00/5 Total 2 Ratings
Developer http://thepixelforge.co.uk
Email [email protected]
Payment Type free
Extension Website https://github.com/anth12/dom-overflow
Help Page URL https://github.com/anth12/dom-overflow/issues
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DOM Overflow",
    "description": "Highlights elements that overflow the viewport",
    "version": "2.0.1",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Highlight overflowing elements"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "manifest_version": 2
}