Grid Builder

Grid Builder extension applies a grid to current web page.

What is Grid Builder?

Grid Builder is a Chrome extension developed by https://beltslib.net, and its main feature is "Grid Builder extension applies a grid to current web page.".

Extension Screenshots

screenshot
screenshot

Download Grid Builder Extension CRX File

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

                        Grid Builder is a tool, built for front-end developers to inspect and examine their designs or any web site in action.

This extension is absolutely a must have in every front-end developers browser.                    

Extension Basic Information

Name Grid Builder Grid Builder
ID fdngjphcahnpgejdhledgcfggjokekgl
Official URL https://chromewebstore.google.com/detail/grid-builder/fdngjphcahnpgejdhledgcfggjokekgl
Description Grid Builder extension applies a grid to current web page.
File Size 43.28 KB
Installation Count 972
Current Version 1.0
Last Updated 2014-11-23
Publish Date 2014-11-23
Rating 3.70/5 Total 10 Ratings
Developer https://beltslib.net
Payment Type free
Extension Website http://gridbuilder.beltslib.net
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grid Builder",
    "description": "Grid Builder extension applies a grid to current web page.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon-disabled.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "content.min.css"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ]
}