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 |
| 公式URL | 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 |
| Eメール | [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\/*"
]
}
]
} | |