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.
Vad är Zeplin Pixel to Rem?
Zeplin Pixel to Rem är en Chrome-tillägg utvecklad av sepehr411, och dess huvudfunktion är "An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.".
Tilläggsskärmbilder
Ladda ner Zeplin Pixel to Rem-förlängningens CRX-fil
Ladda ner Zeplin Pixel to Rem-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin.
Grundläggande Information om Tillägg
Namn | Zeplin Pixel to Rem |
ID | ljbfneibnhgkkmmllhcjjijahiifgdhe |
Officiell webbadress | https://chromewebstore.google.com/detail/zeplin-pixel-to-rem/ljbfneibnhgkkmmllhcjjijahiifgdhe |
Beskrivning | An extension to convert Zeplin px units to rem units. The extension will automatically convert the units as you use Zeplin. |
Filstorlek | 104 KB |
Antal Installationer | 251 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2020-01-05 |
Publiceringsdatum | 2020-01-05 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | sepehr411 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |