Markup Grid

Grid for testing page markup

What is Markup Grid?

Markup Grid is a Chrome extension developed by Gaer Nikita, and its main feature is "Grid for testing page markup".

Extension Screenshots

screenshot

Download Markup Grid Extension CRX File

Download Markup Grid 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

                        Extension add simple grid. You can set size, color, opacity for cells and width, alignment and parent selector for container. Extension remember setting for all domains where extension was used, and store it in localStorage. Grid can be toggled with hotkeys, and change position using keyboard arrow.                    

Extension Basic Information

Name Markup Grid Markup Grid
ID glgcgfomfaoaeplojndmocffblbnemlc
Official URL https://chrome.google.com/webstore/detail/markup-grid/glgcgfomfaoaeplojndmocffblbnemlc
Description Grid for testing page markup
File Size 25.13 KB
Installation Count 71
Current Version 1.1.1
Last Updated 2013-10-01
Publish Date 2013-10-01
Rating 2.50/5 Total 4 Ratings
Developer Gaer Nikita
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Markup Grid",
    "description": "Grid for testing page markup",
    "version": "1.1.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html"
}