Relume Chrome Extension for Webflow

Boost your productivity in Webflow with the Relume Chrome Extension.

Что такое Relume Chrome Extension for Webflow?

Relume Chrome Extension for Webflow - это расширение Chrome, разработанное relume-chrome-developers, и его основная функция - "Boost your productivity in Webflow with the Relume Chrome Extension.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Relume Chrome Extension for Webflow

Скачайте файлы расширений Relume Chrome Extension for Webflow в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        ★ 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                    

Основная информация о расширении

Название Relume Chrome Extension for Webflow Relume Chrome Extension for Webflow
ID doeokejknjdlpgkkmlbcahojmnpdlebm
Официальный URL https://chromewebstore.google.com/detail/relume-chrome-extension-f/doeokejknjdlpgkkmlbcahojmnpdlebm
Описание Boost your productivity in Webflow with the Relume Chrome Extension.
Размер файла 936 KB
Количество установок 10,000
Текущая Версия 49
Последнее Обновление 2024-03-07
Дата публикации 2022-12-04
Рейтинг 5.00/5 Всего 35 оценок
Разработчик relume-chrome-developers
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.relume.io/
URL страницы помощи https://relumelibrary.slack.com/join/shared_invite/zt-1889u3uhd-Tgj5wFEUKLFRGolfVBlHpw#/shared-invite/email
URL страницы политики конфиденциальности https://library.relume.io/legal/privacy-policy
Поддерживаемые языки 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"
    ]
}