REM calculator for Webflow
Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro
Wat is REM calculator for Webflow?
REM calculator for Webflow is een Chrome-extensie ontwikkeld door kobro, en de belangrijkste functie is "Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro".
Extensie Screenshots
Download het CRX-bestand van de extensie REM calculator for Webflow
Download REM calculator for Webflow-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | REM calculator for Webflow |
ID | bhfnnhhohijiicjkcpgphmodfaehmijj |
Officiële URL | https://chromewebstore.google.com/detail/rem-calculator-for-webflo/bhfnnhhohijiicjkcpgphmodfaehmijj |
Beschrijving | Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro |
Bestandsgrootte | 11.07 KB |
Aantal Installaties | 87 |
Huidige Versie | 0.0.4 |
Laatst Bijgewerkt | 2024-02-14 |
Publicatiedatum | 2022-06-17 |
Ontwikkelaar | kobro |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://t.me/kobro |
Ondersteunde Talen | 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" } } |