Grids & Rulers

Create grids and rulers overlays to help develop your web applications

Grids & Rulers란 무엇입니까?

Grids & Rulers은(는) https://jeremie.patonnier.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create grids and rulers overlays to help develop your web applications"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Grids & Rulers 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Grids & Ruler is an extension that add a new panel to Chrome developer tools. That panel let you create and manage overlays on pages that provide you visual hints to develop you web app layouts.                    

확장 프로그램 기본 정보

이름 Grids & Rulers Grids & Rulers
ID kaippllfihpjicemabbbcljbmcpccabl
공식 URL https://chromewebstore.google.com/detail/grids-rulers/kaippllfihpjicemabbbcljbmcpccabl
설명 Create grids and rulers overlays to help develop your web applications
파일 크기 31.24 KB
설치 횟수 4,203
현재 버전 2.0
최근 업데이트 2020-05-22
출시 날짜 2020-05-22
평점 5.00/5 총 3 개의 평점
개발자 https://jeremie.patonnier.net
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/JeremiePat/grids-and-rulers
도움말 페이지 URL https://github.com/JeremiePat/grids-and-rulers
지원되는 언어 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "2.0",
    "default_locale": "en",
    "icons": {
        "16": "img\/icon.16.png",
        "32": "img\/icon.32.png",
        "48": "img\/icon.48.png",
        "64": "img\/icon.64.png",
        "96": "img\/icon.96.png",
        "128": "img\/icon.128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "lib\/chrome-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/chrome-polyfill.js",
                "content\/js\/grids.js",
                "content\/js\/rulers.js",
                "content\/main.js"
            ],
            "css": [
                "content\/css\/grids.css",
                "content\/css\/rulers.css"
            ]
        }
    ],
    "devtools_page": "devtools.html"
}