Grrrid

A very simple grid system overlay pluggin.

Qu'est-ce que Grrrid ?

Grrrid est une extension Chrome développée par david marsalone, et sa fonction principale est "A very simple grid system overlay pluggin.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Grrrid

Téléchargez les fichiers d'extension Grrrid au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        You can manage :

- Number of columns
- Columns width
- Gutter width
- Grid alignement to left, center or right. Then you can adjust the offset.
- Opacity

The "common grid" preset selector will probably help you to find in one click your favorite grid framework...960.gs, 978.gs, Twitter Bootstrap... 

When you leave Grrrid, it records your current grid. Thus you won't need to re-customize it when you refresh the page.                    

Informations de Base sur l'Extension

Nom Grrrid Grrrid
ID fikpgdnlnimmndcamdmmkfjblcfnckoo
URL Officiel https://chromewebstore.google.com/detail/grrrid/fikpgdnlnimmndcamdmmkfjblcfnckoo
Description A very simple grid system overlay pluggin.
Taille du Fichier 138 KB
Nombre d'Installations 1,164
Version Actuelle 0.0.1.2
Dernière Mise à Jour 2012-10-03
Date de Publication 2012-10-03
Évaluation 3.68/5 Total 22 Évaluations
Développeur david marsalone
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grrrid",
    "version": "0.0.1.2",
    "manifest_version": 2,
    "description": "A very simple grid system overlay pluggin.",
    "browser_action": {
        "default_icon": "img\/app\/icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "img\/app\/icon16.png",
        "48": "img\/app\/icon48.png",
        "32": "img\/app\/icon32.png",
        "128": "img\/app\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "css": [
                "css\/grrrid.css"
            ],
            "js": [
                "js\/background.js",
                "js\/jquery-1.7.2.js",
                "js\/jquery.jstepper.min.js",
                "js\/grrrid.js"
            ]
        }
    ],
    "permissions": [
        "cookies",
        "tabs",
        "*:\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}