Zeplin Pixel to Rem

An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.

Что такое Zeplin Pixel to Rem?

Zeplin Pixel to Rem - это расширение Chrome, разработанное sepehr411, и его основная функция - "An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.".

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

screenshot

Скачать файл CRX расширения Zeplin Pixel to Rem

Скачайте файлы расширений Zeplin Pixel to Rem в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.                    

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

Название Zeplin Pixel to Rem Zeplin Pixel to Rem
ID ljbfneibnhgkkmmllhcjjijahiifgdhe
Официальный URL https://chromewebstore.google.com/detail/zeplin-pixel-to-rem/ljbfneibnhgkkmmllhcjjijahiifgdhe
Описание An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.
Размер файла 104 KB
Количество установок 251
Текущая Версия 1.0
Последнее Обновление 2020-01-05
Дата публикации 2020-01-05
Рейтинг 5.00/5 Всего 3 оценок
Разработчик sepehr411
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zeplin Pixel to Rem",
    "short_name": "zeplinpxtorem",
    "version": "1.0",
    "browser_action": {
        "default_title": "Zeplin Pixel to Rem",
        "default_popup": "options.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/app.zeplin.io\/*",
                "https:\/\/app.zeplin.io\/*"
            ],
            "js": [
                ".\/dist\/index.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}