REM calculator for Webflow
Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro
Cos'è REM calculator for Webflow?
REM calculator for Webflow è un'estensione di Chrome sviluppata da kobro, e la sua funzione principale è "Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione REM calculator for Webflow
Scarica i file di estensione REM calculator for Webflow 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
Calculate px to rem inside Webflow designer. Before start, make sure you have embed code: html { font-size: 1vw; } HOW TO USE: 1. Enter base width in px of your design or select width options. 2. In input like margin, padding, width, height, etc.. enter number in PX and press 'Space' key. 3. Get REM size in your input. (PX size / PX base width) * 100 = REM
Informazioni di Base sull'Estensione
Nome | REM calculator for Webflow |
ID | bhfnnhhohijiicjkcpgphmodfaehmijj |
URL Ufficiale | https://chromewebstore.google.com/detail/rem-calculator-for-webflo/bhfnnhhohijiicjkcpgphmodfaehmijj |
Descrizione | Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro |
Dimensione del File | 11.07 KB |
Conteggio Installazioni | 87 |
Versione Corrente | 0.0.4 |
Ultimo Aggiornamento | 2024-02-14 |
Data di Pubblicazione | 2022-06-17 |
Sviluppatore | kobro |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://t.me/kobro |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "REM calculator for Webflow", "description": "Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro", "version": "0.0.4", "manifest_version": 3, "host_permissions": [ "https:\/\/*.webflow.com\/*" ], "permissions": [ "storage", "activeTab", "scripting" ], "content_scripts": [ { "matches": [ "https:\/\/*.webflow.com\/*" ], "js": [ "main.js" ], "run_at": "document_idle" } ], "action": { "default_popup": "popup.html" }, "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } } |