IsoGrid

Grid layout for multiple breakpoints.

ما هو IsoGrid؟

IsoGrid هو إضافة Chrome تم تطويرها بواسطة Rahimoddin Naikwade، والميزة الرئيسية لها هي "Grid layout for multiple breakpoints.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة IsoGrid

قم بتنزيل ملفات الامتداد IsoGrid بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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).                    

معلومات أساسية عن التمديد

الاسم IsoGrid IsoGrid
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"
}