Finsweet Extension for Webflow
A suite of F'in sweet tools to improve your Webflow development experience.
Finsweet Extension for Webflow là gì?
Finsweet Extension for Webflow là một tiện ích mở rộng Chrome được phát triển bởi https://finsweet.com, và tính năng chính của nó là "A suite of F'in sweet tools to improve your Webflow development experience.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Finsweet Extension for Webflow
Tải xuống các tệp mở rộng Finsweet Extension for Webflow dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Finsweet Extension for Webflow |
ID | mjfibgdpclkaemogkfadpbdfoinnejep |
URL Chính Thức | https://chromewebstore.google.com/detail/finsweet-extension-for-we/mjfibgdpclkaemogkfadpbdfoinnejep |
Mô tả | A suite of F'in sweet tools to improve your Webflow development experience. |
Kích Thước Tệp | 557 KB |
Số Lần Cài Đặt | 28,070 |
Phiên Bản Hiện Tại | 0.17.1 |
Cập Nhật Lần Cuối | 2023-12-13 |
Ngày Phát Hành | 2021-08-07 |
Đánh Giá | 4.89/5 Tổng số 72 Đánh Giá |
Nhà Phát Triển | https://finsweet.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.finsweet.com/extension/ |
URL Trang Trợ Giúp | https://www.finsweet.com/sweetjs/ |
URL Trang Chính Sách Bảo Mật | https://www.finsweet.com/legal |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |