REM calculator for Webflow

Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro

Qu'est-ce que REM calculator for Webflow ?

REM calculator for Webflow est une extension Chrome développée par kobro, et sa fonction principale est "Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension REM calculator for Webflow

Téléchargez les fichiers d'extension REM calculator for Webflow au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom REM calculator for Webflow REM calculator for Webflow
ID bhfnnhhohijiicjkcpgphmodfaehmijj
URL Officiel https://chromewebstore.google.com/detail/rem-calculator-for-webflo/bhfnnhhohijiicjkcpgphmodfaehmijj
Description Calculate PX to REM in Webflow. Select or enter base width. Enter element size(px) and press 'Space'. tg: @kobro
Taille du Fichier 11.07 KB
Nombre d'Installations 87
Version Actuelle 0.0.4
Dernière Mise à Jour 2024-02-14
Date de Publication 2022-06-17
Développeur kobro
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://t.me/kobro
Langues Prises en Charge 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"
    }
}