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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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'"
}