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.

Cos'è Zeplin Pixel to Rem?

Zeplin Pixel to Rem è un'estensione di Chrome sviluppata da sepehr411, e la sua funzione principale è "An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Zeplin Pixel to Rem

Scarica i file di estensione Zeplin Pixel to Rem in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Zeplin Pixel to Rem Zeplin Pixel to Rem
ID ljbfneibnhgkkmmllhcjjijahiifgdhe
URL Ufficiale https://chromewebstore.google.com/detail/zeplin-pixel-to-rem/ljbfneibnhgkkmmllhcjjijahiifgdhe
Descrizione An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.
Dimensione del File 104 KB
Conteggio Installazioni 251
Versione Corrente 1.0
Ultimo Aggiornamento 2020-01-05
Data di Pubblicazione 2020-01-05
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore sepehr411
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}