Adobe XD Rem fix

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

Co to jest Adobe XD Rem fix?

Adobe XD Rem fix to rozszerzenie Chrome opracowane przez Emmanuel Glez, a jego główną funkcją jest „It is only a small script that serves to force the change from px to rem automatically”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Adobe XD Rem fix

Pobierz pliki rozszerzeń Adobe XD Rem fix w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa Adobe XD Rem fix Adobe XD Rem fix
ID dppocgklbdkbfneadpfbodohoopacpdf
Oficjalny URL https://chromewebstore.google.com/detail/adobe-xd-rem-fix/dppocgklbdkbfneadpfbodohoopacpdf
Opis It is only a small script that serves to force the change from px to rem automatically
Rozmiar pliku 16.65 KB
Liczba instalacji 589
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2021-04-29
Data Publikacji 2021-04-29
Deweloper Emmanuel Glez
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}