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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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"
}