IsoGrid
Grid layout for multiple breakpoints.
What is IsoGrid?
IsoGrid is a Chrome extension developed by Rahimoddin Naikwade, and its main feature is "Grid layout for multiple breakpoints.".
Extension Screenshots
Download IsoGrid Extension CRX File
Download IsoGrid extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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).
Extension Basic Information
Name | |
ID | jdapemohiapedeenfhnejdpaclboieln |
Official URL | https://chrome.google.com/webstore/detail/isogrid/jdapemohiapedeenfhnejdpaclboieln |
Description | Grid layout for multiple breakpoints. |
File Size | 11.12 KB |
Installation Count | 279 |
Current Version | 1 |
Last Updated | 2018-10-15 |
Publish Date | 2018-10-15 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Rahimoddin Naikwade |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } |