Grids & Rulers

Create grids and rulers overlays to help develop your web applications

ما هو Grids & Rulers؟

Grids & Rulers هو إضافة Chrome تم تطويرها بواسطة https://jeremie.patonnier.net، والميزة الرئيسية لها هي "Create grids and rulers overlays to help develop your web applications".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Grids & Rulers

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

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

                        Grids & Ruler is an extension that add a new panel to Chrome developer tools. That panel let you create and manage overlays on pages that provide you visual hints to develop you web app layouts.                    

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

الاسم Grids & Rulers Grids & Rulers
ID kaippllfihpjicemabbbcljbmcpccabl
عنوان URL الرسمي https://chromewebstore.google.com/detail/grids-rulers/kaippllfihpjicemabbbcljbmcpccabl
الوصف Create grids and rulers overlays to help develop your web applications
حجم الملف 31.24 KB
عدد التثبيتات 4,203
النسخة الحالية 2.0
آخر تحديث 2020-05-22
تاريخ النشر 2020-05-22
تقييم 5.00/5 مجموع تقييمات 3
المطور https://jeremie.patonnier.net
نوع الدفع free
موقع الإضافة https://github.com/JeremiePat/grids-and-rulers
عنوان صفحة المساعدة https://github.com/JeremiePat/grids-and-rulers
اللغات المدعومة en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "2.0",
    "default_locale": "en",
    "icons": {
        "16": "img\/icon.16.png",
        "32": "img\/icon.32.png",
        "48": "img\/icon.48.png",
        "64": "img\/icon.64.png",
        "96": "img\/icon.96.png",
        "128": "img\/icon.128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "lib\/chrome-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/chrome-polyfill.js",
                "content\/js\/grids.js",
                "content\/js\/rulers.js",
                "content\/main.js"
            ],
            "css": [
                "content\/css\/grids.css",
                "content\/css\/rulers.css"
            ]
        }
    ],
    "devtools_page": "devtools.html"
}