Grid System
Grid System for web development
什么是Grid System?
Grid System是由Pavel Fomichev开发的Chrome扩展程序,该扩展的主要功能是“Grid System for web development”。
扩展截图
下载Grid System扩展crx文件
下载Grid System扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Grid System for web development 扩展基本信息
| 名称 | |
| ID | mhdiagjmgbkgeeppcohbjboloihjljho |
| 官方URL | https://chrome.google.com/webstore/detail/grid-system/mhdiagjmgbkgeeppcohbjboloihjljho |
| 简介 | Grid System for web development |
| 文件大小 | 8.57 KB |
| 安装次数 | 4,000 |
| 当前版本 | 1.1 |
| 更新时间 | 2014-08-29 |
| 上架时间 | 2014-08-29 |
| 评分 | 3.29/5 共17次评分 |
| 开发者 | Pavel Fomichev |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Grid System",
"short_name": "Grid System for web development",
"description": "Grid System for web development",
"version": "1.1",
"author": "Pavel Fomichev",
"offline_enabled": true,
"icons": {
"16": "grid16.png",
"48": "grid48.png",
"128": "grid128.png"
},
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"run_at": "document_idle",
"js": [
"grid-content.js"
]
}
],
"browser_action": {
"default_icon": "grid19.png",
"default_title": "Grid System",
"default_popup": "grid.html"
}
} | |