Markup Grid

Grid for testing page markup

Markup Gridとは何ですか?

Markup GridはGaer Nikitaによって開発されたChromeの拡張機能で、その主な機能は「Grid for testing page markup」です。

拡張機能のスクリーンショット

screenshot

Markup Grid拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Extension add simple grid. You can set size, color, opacity for cells and width, alignment and parent selector for container. Extension remember setting for all domains where extension was used, and store it in localStorage. Grid can be toggled with hotkeys, and change position using keyboard arrow.                    

拡張機能の基本情報

名前 Markup Grid Markup Grid
ID glgcgfomfaoaeplojndmocffblbnemlc
公式URL https://chrome.google.com/webstore/detail/markup-grid/glgcgfomfaoaeplojndmocffblbnemlc
説明 Grid for testing page markup
ファイルサイズ 25.13 KB
インストール数 71
現在のバージョン 1.1.1
最終更新日 2013-10-01
公開日 2013-10-01
評価 2.50/5 合計 4 レビュー
開発者 Gaer Nikita
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Markup Grid",
    "description": "Grid for testing page markup",
    "version": "1.1.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html"
}