Adobe XD Rem fix

It is only a small script that serves to force the change from px to rem automatically

Что такое Adobe XD Rem fix?

Adobe XD Rem fix - это расширение Chrome, разработанное Emmanuel Glez, и его основная функция - "It is only a small script that serves to force the change from px to rem automatically".

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

screenshot

Скачать файл CRX расширения Adobe XD Rem fix

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

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

                        Cuando estas en alguna página del dominio https://xd.adobe.com/, automáticamente al hacer click sobre algún vector se mostrará los PX del elemento, junto con su conversión a REM y el cálculo para poder guardarla en la configuración de Tailwind (por ejemplo, 16px = 1 rem = 4 (tailwind config)                    

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

Название Adobe XD Rem fix Adobe XD Rem fix
ID dppocgklbdkbfneadpfbodohoopacpdf
Официальный URL https://chromewebstore.google.com/detail/adobe-xd-rem-fix/dppocgklbdkbfneadpfbodohoopacpdf
Описание It is only a small script that serves to force the change from px to rem automatically
Размер файла 16.65 KB
Количество установок 589
Текущая Версия 0.1
Последнее Обновление 2021-04-29
Дата публикации 2021-04-29
Разработчик Emmanuel Glez
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adobe XD Rem fix",
    "description": "It is only a small script that serves to force the change from px to rem automatically",
    "version": "0.1",
    "manifest_version": 3,
    "host_permissions": [
        "https:\/\/xd.adobe.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "foreground.js"
            ],
            "matches": [
                "https:\/\/xd.adobe.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/xdToRemIcon16.png",
        "32": "\/images\/xdToRemIcon32.png",
        "48": "\/images\/xdToRemIcon48.png",
        "128": "\/images\/xdToRemIcon128.png"
    }
}