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.
Was ist Zeplin Pixel to Rem?
Zeplin Pixel to Rem ist eine Chrome-Erweiterung, die von sepehr411 entwickelt wurde, und ihr Hauptmerkmal ist "An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.".
Erweiterungsscreenshots
Zeplin Pixel to Rem-Erweiterungs-CRX-Datei herunterladen
Laden Sie Zeplin Pixel to Rem-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.
Grundlegende Informationen zur Erweiterung
Name | Zeplin Pixel to Rem |
ID | ljbfneibnhgkkmmllhcjjijahiifgdhe |
Offizielle URL | https://chromewebstore.google.com/detail/zeplin-pixel-to-rem/ljbfneibnhgkkmmllhcjjijahiifgdhe |
Beschreibung | An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin. |
Dateigröße | 104 KB |
Installationsanzahl | 251 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-01-05 |
Veröffentlichungsdatum | 2020-01-05 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | sepehr411 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |