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.

Co to jest Zeplin Pixel to Rem?

Zeplin Pixel to Rem to rozszerzenie Chrome opracowane przez sepehr411, a jego główną funkcją jest „An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Zeplin Pixel to Rem

Pobierz pliki rozszerzeń Zeplin Pixel to Rem 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

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

Podstawowe informacje o rozszerzeniu

Nazwa Zeplin Pixel to Rem Zeplin Pixel to Rem
ID ljbfneibnhgkkmmllhcjjijahiifgdhe
Oficjalny URL https://chromewebstore.google.com/detail/zeplin-pixel-to-rem/ljbfneibnhgkkmmllhcjjijahiifgdhe
Opis An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.
Rozmiar pliku 104 KB
Liczba instalacji 251
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-01-05
Data Publikacji 2020-01-05
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper sepehr411
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}