Grid overlay

Just the basic grid overlay, no frills.

What is Grid overlay?

Grid overlay is a Chrome extension developed by rplusj, and its main feature is "Just the basic grid overlay, no frills.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Grid overlay Extension CRX File

Download Grid overlay 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 Overlay


I was unable to find any good "Grid overlay" extension. So I made one. Just a basic grid overlay, nothing fancy.

Movement of the grid:
LEFT  : ctrl + h
UP     : ctrl + j
DOWN  : ctrl + k
RIGHT : ctrl + l


Coming up in next release:
Customizable grid
  > color horizontal and vertical both.
  > size                    

Extension Basic Information

Name Grid overlay Grid overlay
ID fhiiepkchgbbphlinedpaoijhianakpn
Official URL https://chrome.google.com/webstore/detail/grid-overlay/fhiiepkchgbbphlinedpaoijhianakpn
Description Just the basic grid overlay, no frills.
File Size 177 KB
Installation Count 718
Current Version 0.0.1
Last Updated 2015-06-19
Publish Date 2015-06-19
Rating 2.50/5 Total 8 Ratings
Developer rplusj
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grid overlay",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Just the basic grid overlay, no frills.",
    "homepage_url": "http:\/\/DomainNotPurchased.com",
    "icons": {
        "16": "icons\/ico.png",
        "48": "icons\/ico.png",
        "128": "icons\/ico.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/ico.png",
        "default_title": "Grid overlay - no frills"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}