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是由Minimal Square开发的Chrome扩展程序,该扩展的主要功能是“Supercharge your Webflow productivity with the Minimal Square Chrome Extension.”。
扩展截图
下载Minimal Square - Webflow Chrome Extension扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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
}
]
} | |