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ファイルをダウンロード

Grids & Rulers拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
}