Grid overlay

Just the basic grid overlay, no frills.

¿Qué es Grid overlay?

Grid overlay es una extensión de Chrome desarrollada por rplusj, y su función principal es "Just the basic grid overlay, no frills.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Grid overlay

Descarga archivos de extensión Grid overlay en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Grid overlay Grid overlay
ID fhiiepkchgbbphlinedpaoijhianakpn
URL Oficial https://chrome.google.com/webstore/detail/grid-overlay/fhiiepkchgbbphlinedpaoijhianakpn
Descripción Just the basic grid overlay, no frills.
Tamaño del Archivo 177 KB
Cantidad de Instalaciones 718
Versión Actual 0.0.1
Última Actualización 2015-06-19
Fecha de Publicación 2015-06-19
Calificación 2.50/5 Total de 8 Calificaciones
Desarrollador rplusj
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}