Finsweet Extension for Webflow
A suite of F'in sweet tools to improve your Webflow development experience.
什麼是Finsweet Extension for Webflow?
Finsweet Extension for Webflow是由https://finsweet.com開發的Chrome擴展程式,該擴展的主要功能是“A suite of F'in sweet tools to improve your Webflow development experience.”。
擴展截圖
下載Finsweet Extension for Webflow擴展crx文件
下載Finsweet Extension for Webflow擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Unlock new and powerful tools and functionalities within Webflow's Dashboard, Editor and Designer.
Functionalities include:
- Bulk 301 redirects upload.
- CSS styles sorting, editing and removal.
- Interactions, Symbols and Color swatches reordering.
- Breakpoints highlighting and removal.
- Components marketplace to copy and paste directly in your project.
- Direct integration with our Finsweet libraries like Cookie Consent or Attributes.
- Vertical Canvas Resizing.
- And much more! 擴展基本資訊
| 名稱 | |
| ID | mjfibgdpclkaemogkfadpbdfoinnejep |
| 官方網址 | https://chromewebstore.google.com/detail/finsweet-extension-for-we/mjfibgdpclkaemogkfadpbdfoinnejep |
| 簡介 | A suite of F'in sweet tools to improve your Webflow development experience. |
| 檔案大小 | 557 KB |
| 安裝次數 | 28,070 |
| 目前版本 | 0.17.1 |
| 更新時間 | 2023-12-13 |
| 上架時間 | 2021-08-07 |
| 評分 | 4.89/5 共 72 次評分 |
| 開發者 | https://finsweet.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.finsweet.com/extension/ |
| 說明頁面URL | https://www.finsweet.com/sweetjs/ |
| 隱私政策頁面URL | https://www.finsweet.com/legal |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Finsweet Extension for Webflow",
"description": "A suite of F'in sweet tools to improve your Webflow development experience.",
"version": "0.17.1",
"manifest_version": 3,
"author": "Finsweet",
"permissions": [
"storage",
"scripting",
"webNavigation"
],
"host_permissions": [
"https:\/\/webflow.com\/design*",
"https:\/\/cdn.jsdelivr.net\/*",
"https:\/\/my.finsweet.com\/*"
],
"icons": {
"16": "images\/fs16.png",
"32": "images\/fs32.png",
"48": "images\/fs48.png",
"128": "images\/fs128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/webflow.com\/design*",
"https:\/\/*.design.webflow.com\/*"
],
"css": [
".\/designer\/assets\/index.css"
],
"js": [
".\/designer\/assets\/index.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/webflow.com\/dashboard*"
],
"css": [
".\/dashboard\/assets\/index.css"
],
"js": [
".\/dashboard\/assets\/index.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"designer\/*",
"images\/*"
],
"matches": [
"https:\/\/*.webflow.com\/*"
]
}
]
} | |