MagicPaste for Webflow
MagicPaste
MagicPaste for Webflowคืออะไร?
MagicPaste for Webflow เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fake.so และคุณลักษณะหลักของมันคือ "MagicPaste"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MagicPaste for Webflow
ดาวน์โหลดไฟล์ส่วนขยาย MagicPaste for Webflow ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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" ] } ] } |