IsoGrid
Grid layout for multiple breakpoints.
什么是IsoGrid?
IsoGrid是由Rahimoddin Naikwade开发的Chrome扩展程序,该扩展的主要功能是“Grid layout for multiple breakpoints.”。
扩展截图
下载IsoGrid扩展crx文件
下载IsoGrid扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Shows a responsive grid overlay on top of an existing page. Based on grid which has a container maximum width, columns with fixed margins (gutters), variable number of columns between layouts, and 3 layouts: "small" (mobile), "medium" (tablet) and "large" (desktop).
扩展基本信息
名称 | |
ID | jdapemohiapedeenfhnejdpaclboieln |
官方URL | https://chrome.google.com/webstore/detail/isogrid/jdapemohiapedeenfhnejdpaclboieln |
简介 | Grid layout for multiple breakpoints. |
文件大小 | 11.12 KB |
安装次数 | 279 |
当前版本 | 1 |
更新时间 | 2018-10-15 |
上架时间 | 2018-10-15 |
评分 | 5.00/5 共2次评分 |
开发者 | Rahimoddin Naikwade |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "IsoGrid", "description": "Grid layout for multiple breakpoints.", "version": "1", "author": "Rahimoddin Naikwade", "browser_action": { "default_popup": "popup.html", "default_title": "Isobar Grid Layout", "default_icon": { "16": "images\/isogrid_16.png", "32": "images\/isogrid_32.png", "48": "images\/isogrid_48.png", "128": "images\/isogrid_128.png" } }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "icons": { "16": "images\/isogrid_16.png", "32": "images\/isogrid_32.png", "48": "images\/isogrid_48.png", "128": "images\/isogrid_128.png" }, "permissions": [ "storage", "declarativeContent", "activeTab" ], "options_page": "options.html" } |