Grid System

Grid System for web development

Cos'è Grid System?

Grid System è un'estensione di Chrome sviluppata da Pavel Fomichev, e la sua funzione principale è "Grid System for web development".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Grid System

Scarica i file di estensione Grid System in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Grid System for web development                    

Informazioni di Base sull'Estensione

Nome Grid System Grid System
ID mhdiagjmgbkgeeppcohbjboloihjljho
URL Ufficiale https://chrome.google.com/webstore/detail/grid-system/mhdiagjmgbkgeeppcohbjboloihjljho
Descrizione Grid System for web development
Dimensione del File 8.57 KB
Conteggio Installazioni 4,000
Versione Corrente 1.1
Ultimo Aggiornamento 2014-08-29
Data di Pubblicazione 2014-08-29
Valutazione 3.29/5 Totale 17 Valutazioni
Sviluppatore Pavel Fomichev
Tipo di Pagamento free
Lingue Supportate 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"
    }
}