Grids by Color Sets

Flexible column and baseline grids, beautifully rendered in your browser.

Что такое Grids by Color Sets?

Grids by Color Sets - это расширение Chrome, разработанное https://colorsets.com, и его основная функция - "Flexible column and baseline grids, beautifully rendered in your browser.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Grids by Color Sets

Скачайте файлы расширений Grids by Color Sets в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Flexible column and baseline grids, beautifully rendered in your browser.                    

Основная информация о расширении

Название Grids by Color Sets Grids by Color Sets
ID ohmjbldcfanjibdmbfpdlffhagjedobb
Официальный URL https://chromewebstore.google.com/detail/grids-by-color-sets/ohmjbldcfanjibdmbfpdlffhagjedobb
Описание Flexible column and baseline grids, beautifully rendered in your browser.
Размер файла 171 KB
Количество установок 130
Текущая Версия 0.1.4
Последнее Обновление 2019-06-29
Дата публикации 2019-06-24
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://colorsets.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://colorsets.com
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grids by Color Sets",
    "short_name": "Grids",
    "version": "0.1.4",
    "default_locale": "en",
    "description": "Flexible column and baseline grids, beautifully rendered in your browser.",
    "homepage_url": "https:\/\/colorsets.com\/extensions\/grids",
    "author": "Color Sets",
    "incognito": "spanning",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icons\/icon-16.png",
            "32": "images\/icons\/icon-32.png",
            "48": "images\/icons\/icon-48.png",
            "128": "images\/icons\/icon-128.png"
        }
    },
    "commands": {
        "toggle-grid": {
            "suggested_key": {
                "default": "Ctrl+G",
                "mac": "MacCtrl+G"
            },
            "description": "Toggle grid display"
        }
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.js"
    ],
    "icons": {
        "16": "images\/icons\/icon-16.png",
        "32": "images\/icons\/icon-32.png",
        "48": "images\/icons\/icon-48.png",
        "128": "images\/icons\/icon-128.png"
    },
    "offline_enabled": true,
    "manifest_version": 2
}