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.”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| ID | fdngjphcahnpgejdhledgcfggjokekgl |
| 官方URL | 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"
]
} | |