Potato Extension for Webflow
Potato is your Webflow companion, toss it into your workflow and watch it sprout with time-saving features!
什么是Potato Extension for Webflow?
Potato Extension for Webflow是由Harshit Agrawal开发的Chrome扩展程序,该扩展的主要功能是“Potato is your Webflow companion, toss it into your workflow and watch it sprout with time-saving features!”。
扩展截图
下载Potato Extension for Webflow扩展crx文件
下载Potato Extension for Webflow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Introducing Potato Extension for Webflow, the spud-tacular sidekick you never knew you needed! Designed for Webflow enthusiasts, and comes with bite-sized, time-saving features. 🥔✨
Feature 1: Effortlessly add "/16rem" using a single spacebar tap – specially crafted for Client-First lovers!
Feature 2: Copy SVG code straight from the Webflow asset panel – big timesaver!
Feature 3: Copy SVG as HTML Embed easily from the Webflow asset panel – faster workflow!
Feature 4: Instantly set inline image height and width with a single click – minimize CLS and boost performance.
Feature 5: Add Alt-text from asset name inside the asset panel – small but helpful addon!
Feature 6: Use Artificial Intelligence(AI) to add Alt-text to images present inside asset panel.
Feature 7: Class Name Helper for Style Systems – helps you name classes faster than ever!
Ready to save some time with Potato? Install it now! 扩展基本信息
| 名称 | |
| ID | fghlhikadbbichmbfeijofnmcpgeggch |
| 官方URL | https://chromewebstore.google.com/detail/potato-extension-for-webf/fghlhikadbbichmbfeijofnmcpgeggch |
| 简介 | Potato is your Webflow companion, toss it into your workflow and watch it sprout with time-saving features! |
| 文件大小 | 29.91 KB |
| 安装次数 | 1,205 |
| 当前版本 | 0.2.0 |
| 更新时间 | 2023-12-16 |
| 上架时间 | 2023-04-18 |
| 评分 | 5.00/5 共11次评分 |
| 开发者 | Harshit Agrawal |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.flowchef.co/ |
| 帮助页面URL | https://ha-official.notion.site/Potato-Extension-for-Webflow-1e320bc87d8243c296bb57ed8526a36a |
| 隐私政策页面URL | https://ha-official.notion.site/Privacy-Policy-8caf5f6b87454e6d85f8174ef7cc176b |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Potato Extension for Webflow",
"version": "0.2.0",
"description": "Potato is your Webflow companion, toss it into your workflow and watch it sprout with time-saving features!",
"icons": {
"48": "images\/Potato-48.png",
"128": "images\/Potato-128.png"
},
"action": {
"default_popup": "component.html",
"default_icon": {
"48": "images\/Potato-48.png"
}
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"*:\/\/webflow.com\/*",
"*:\/\/*.design.webflow.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/webflow.com\/*",
"*:\/\/*.design.webflow.com\/*"
],
"js": [
"scripts\/initialize.js",
"scripts\/functions.js"
],
"css": [
"styles\/component.css"
]
}
],
"background": {
"service_worker": "scripts\/background.js"
}
} | |