Relume Chrome Extension for Webflow

Boost your productivity in Webflow with the Relume Chrome Extension.

Hvad er Relume Chrome Extension for Webflow?

Relume Chrome Extension for Webflow er en Chrome-udvidelse udviklet af relume-chrome-developers, og dens hovedfunktion er "Boost your productivity in Webflow with the Relume Chrome Extension.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Relume Chrome Extension for Webflow-udvidelses-CRX-fil

Download Relume Chrome Extension for Webflow-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        ★ Access 1,000+ Webflow components from the Relume Library, right inside of Webflow designer. Copy components into your project with 1 click.

★ Class Sync enables you to sync Relume components with updated classes in the designer, preventing class duplication. When you turn on Class Sync and paste a component, the component will adapt to match the styles of your Webflow project.

★ Paste SVGs directly into your Webflow project, with Relume's free SVG to HTML embed converter.

★ Create and save components in your own private Relume Library. Share with with clients and your team.

────────────────────

The Relume Library includes everything you need to start a Client-First Webflow project:

✓Navbars
✓Footers
✓Header sections
✓Feature sections
✓CTA sections
✓FAQ sections
✓Contact sections
✓Pricing sections
✓UI Elements (including Buttons, Accordions, Sliders, Dropdowns, Cards, Tabs & more)
✓Page Templates (including Home, About, Blog, Contact, Portfolio & more)

Browse the full library online: https://library.relume.io/dashboard

Don't waste time rebuilding layouts for every new project. Install the Relume Chrome Extension to access all of these components right inside Webflow.

────────────────────

Some features require a Relume account or paid subscription.  Find out more inside the extension or online: https://library.relume.io/pricing                    

Grundlæggende oplysninger om udvidelsen

Navn Relume Chrome Extension for Webflow Relume Chrome Extension for Webflow
ID doeokejknjdlpgkkmlbcahojmnpdlebm
Officiel URL https://chromewebstore.google.com/detail/relume-chrome-extension-f/doeokejknjdlpgkkmlbcahojmnpdlebm
Beskrivelse Boost your productivity in Webflow with the Relume Chrome Extension.
Filstørrelse 936 KB
Antal Installationer 10,000
Nuværende Version 49
Senest Opdateret 2024-03-07
Udgivelsesdato 2022-12-04
Bedømmelse 5.00/5 Samlet 35 Bedømmelser
Udvikler relume-chrome-developers
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.relume.io/
Hjælpeside-URL https://relumelibrary.slack.com/join/shared_invite/zt-1889u3uhd-Tgj5wFEUKLFRGolfVBlHpw#/shared-invite/email
URL til Fortrolighedspolitik Side https://library.relume.io/legal/privacy-policy
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Relume Chrome Extension for Webflow",
    "description": "Boost your productivity in Webflow with the Relume Chrome Extension.",
    "version": "49",
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png"
    },
    "optional_host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/webflow.com\/*\/*",
                "*:\/\/*.design.webflow.com\/",
                "*:\/\/*.design.webflow.com\/*"
            ],
            "world": "ISOLATED",
            "js": [
                "webflow_content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/webflow.com\/*\/*",
                "*:\/\/*.design.webflow.com\/",
                "*:\/\/*.design.webflow.com\/*"
            ],
            "world": "MAIN",
            "js": [
                "webflow_content_window.js"
            ]
        },
        {
            "matches": [
                "*:\/\/library.relume.io\/*",
                "*:\/\/www.relume.io\/*"
            ],
            "world": "ISOLATED",
            "js": [
                "relume_content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.png"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "webflow_content_window.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ]
}