MagicPaste for Webflow

MagicPaste

MagicPaste for Webflow란 무엇입니까?

MagicPaste for Webflow은(는) https://fake.so에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "MagicPaste"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Have you tried using Webflow's rich text editor to build a website and found that you have to spend time formatting things like lists and blockquotes by hand? Do you wish you could just write markdown and not mess with the formatting?

MagicPaste is an extension that makes it easy to paste Markdown content into Webflow's Rich Text Editor while already having the correct formatting applied. No longer will you need to painstakingly edit your blog posts and CMS pages. 

Simply begin your markdown content with "@magicpaste" on a new line, followed by the rest of the Markdown content you want formatted. Then, the extension will do the rest, modifying your clipboard to be compatible with Webflow's editor. 

You can write your Markdown in the Webflow editor or a file on your computer -- copy pasting from either will work as you expect!

-------------------------

Supported markdown:

• H1
• H2
• H3
• H4
• H5
• H6
• Quotes
• Links
• Bold
• Italic
• Bulleted Lists
• Numbered Lists
• Images

-------------------------

Privacy Policy 

https://fake.so/legal/magicpaste/privacy-policy

(TLDR: we know absolutely nothing about you or your data)

-------------------------

The source code can also be found on Github at: https://github.com/evanfrawley/magicpaste                    

확장 프로그램 기본 정보

이름 MagicPaste for Webflow MagicPaste for Webflow
ID jgpipfdenjjnedgceofooiegldbkhaki
공식 URL https://chromewebstore.google.com/detail/magicpaste-for-webflow/jgpipfdenjjnedgceofooiegldbkhaki
설명 MagicPaste
파일 크기 61.71 KB
설치 횟수 415
현재 버전 0.1.2
최근 업데이트 2022-02-14
출시 날짜 2022-02-08
평점 3.67/5 총 3 개의 평점
개발자 https://fake.so
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.fake.so/magicpaste
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MagicPaste for Webflow",
    "version": "0.1.2",
    "description": "MagicPaste",
    "icons": {
        "16": "icons\/16px.png",
        "24": "icons\/24px.png",
        "32": "icons\/32px.png",
        "48": "icons\/48px.png",
        "64": "icons\/64px.png",
        "128": "icons\/128px.png"
    },
    "browser_action": {
        "default_title": "MagicPaste"
    },
    "permissions": [],
    "host_permissions": [
        "https:\/\/*.webflow.com\/*",
        "https:\/\/webflow.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.webflow.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "magicpaste.css"
            ]
        }
    ]
}