Grrrid

A very simple grid system overlay pluggin.

什麼是Grrrid?

Grrrid是由david marsalone開發的Chrome擴展程式,該擴展的主要功能是“A very simple grid system overlay pluggin.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Grrrid擴展crx文件

下載Grrrid擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Grrrid Grrrid
ID fikpgdnlnimmndcamdmmkfjblcfnckoo
官方網址 https://chromewebstore.google.com/detail/grrrid/fikpgdnlnimmndcamdmmkfjblcfnckoo
簡介 A very simple grid system overlay pluggin.
檔案大小 138 KB
安裝次數 1,164
目前版本 0.0.1.2
更新時間 2012-10-03
上架時間 2012-10-03
評分 3.68/5 共 22 次評分
開發者 david marsalone
付費類型 free
支援的語言 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'"
}