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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Finsweet Extension for Webflow 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Finsweet Extension for Webflow Finsweet Extension for Webflow
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
이메일 [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\/*"
            ]
        }
    ]
}