REM calculator for Webflow
Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro
什麼是REM calculator for Webflow?
REM calculator for Webflow是由kobro開發的Chrome擴展程式,該擴展的主要功能是“Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro”。
擴展截圖
下載REM calculator for Webflow擴展crx文件
下載REM calculator for Webflow擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | REM calculator for Webflow |
ID | bhfnnhhohijiicjkcpgphmodfaehmijj |
官方網址 | https://chromewebstore.google.com/detail/rem-calculator-for-webflo/bhfnnhhohijiicjkcpgphmodfaehmijj |
簡介 | Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro |
檔案大小 | 11.07 KB |
安裝次數 | 87 |
目前版本 | 0.0.4 |
更新時間 | 2024-02-14 |
上架時間 | 2022-06-17 |
開發者 | kobro |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://t.me/kobro |
支援的語言 | 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" } } |