Grid System

Grid System for web development

What is Grid System?

Grid System is a Chrome extension developed by Pavel Fomichev, and its main feature is "Grid System for web development".

Extension Screenshots

screenshot

Download Grid System Extension CRX File

Download Grid System 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 System for web development                    

Extension Basic Information

Name Grid System Grid System
ID mhdiagjmgbkgeeppcohbjboloihjljho
Official URL https://chrome.google.com/webstore/detail/grid-system/mhdiagjmgbkgeeppcohbjboloihjljho
Description Grid System for web development
File Size 8.57 KB
Installation Count 4,000
Current Version 1.1
Last Updated 2014-08-29
Publish Date 2014-08-29
Rating 3.29/5 Total 17 Ratings
Developer Pavel Fomichev
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grid System",
    "short_name": "Grid System for web development",
    "description": "Grid System for web development",
    "version": "1.1",
    "author": "Pavel Fomichev",
    "offline_enabled": true,
    "icons": {
        "16": "grid16.png",
        "48": "grid48.png",
        "128": "grid128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "grid-content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "grid19.png",
        "default_title": "Grid System",
        "default_popup": "grid.html"
    }
}