Grid Builder

Grid Builder extension applies a grid to current web page.

什麼是Grid Builder?

Grid Builder是由https://beltslib.net開發的Chrome擴展程式,該擴展的主要功能是“Grid Builder extension applies a grid to current web page.”。

擴展截圖

screenshot
screenshot

下載Grid Builder擴展crx文件

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

擴展使用說明

                        Grid Builder is a tool, built for front-end developers to inspect and examine their designs or any web site in action.

This extension is absolutely a must have in every front-end developers browser.                    

擴展基本資訊

名稱 Grid Builder Grid Builder
ID fdngjphcahnpgejdhledgcfggjokekgl
官方網址 https://chromewebstore.google.com/detail/grid-builder/fdngjphcahnpgejdhledgcfggjokekgl
簡介 Grid Builder extension applies a grid to current web page.
檔案大小 43.28 KB
安裝次數 972
目前版本 1.0
更新時間 2014-11-23
上架時間 2014-11-23
評分 3.70/5 共 10 次評分
開發者 https://beltslib.net
付費類型 free
擴展官網 http://gridbuilder.beltslib.net
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grid Builder",
    "description": "Grid Builder extension applies a grid to current web page.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon-disabled.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "content.min.css"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ]
}