Minimal Square - Webflow Chrome Extension
Supercharge your Webflow productivity with the Minimal Square Chrome Extension.
Что такое Minimal Square - Webflow Chrome Extension?
Minimal Square - Webflow Chrome Extension - это расширение Chrome, разработанное Minimal Square, и его основная функция - "Supercharge your Webflow productivity with the Minimal Square Chrome Extension.".
Снимки экрана расширения
Скачать файл CRX расширения Minimal Square - Webflow Chrome Extension
Скачайте файлы расширений Minimal Square - Webflow Chrome Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Minimal Square is a powerful and easy-to-use Chrome extension designed specifically for Webflow users. With this extension, you can easily rename Webflow classes on-the-fly, making it easier to organize your project and keep your code clean. With a click of a button rename classes from client-first naming convention to Webflow Marketplace-compliant naming convention. Your previous work will be backed up so you do not need to worry.
Основная информация о расширении
Название | Minimal Square - Webflow Chrome Extension |
ID | gjpkkbpdkgekjembbfnkhjkmbjhfpmla |
Официальный URL | https://chromewebstore.google.com/detail/minimal-square-webflow-ch/gjpkkbpdkgekjembbfnkhjkmbjhfpmla |
Описание | Supercharge your Webflow productivity with the Minimal Square Chrome Extension. |
Размер файла | 11.17 KB |
Количество установок | 211 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2023-12-26 |
Дата публикации | 2023-04-20 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | Minimal Square |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Minimal Square - Webflow Chrome Extension", "author": "Minimal Square", "version": "1.0.1", "description": "Supercharge your Webflow productivity with the Minimal Square Chrome Extension.", "content_scripts": [ { "js": [ "assets\/content-script-loader.index.js", "assets\/content-script-loader.injected.js" ], "matches": [ "https:\/\/*.design.webflow.com\/*" ], "run_at": "document_idle", "css": [ "assets\/index.js.css" ] } ], "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "web_accessible_resources": [ { "matches": [ "https:\/\/*.design.webflow.com\/*" ], "resources": [ "images\/*" ], "use_dynamic_url": false }, { "matches": [ "https:\/\/*.design.webflow.com\/*" ], "resources": [ "assets\/index.js", "assets\/injected.js" ], "use_dynamic_url": true } ] } |