CodeMode for Webflow

SOME code never hurt anyone...

CodeMode for Webflowคืออะไร?

CodeMode for Webflow เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kevin Haag และคุณลักษณะหลักของมันคือ "SOME code never hurt anyone..."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CodeMode for Webflow

ดาวน์โหลดไฟล์ส่วนขยาย CodeMode for Webflow ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        CodeMode is a mod for Webflow that makes it easier to write code in the designer, without any distractions.

• One-click to launch
• Full screen coding view
• Side-by-side layout to see more of your code
• Keyboard shortcut: Option + A (Mac) / Alt + A (Windows)

--

☕️ Want to support me? 
https://www.buymeacoffee.com/kevinhaag

💬 Follow me on Twitter
https://twitter.com/kevinhaag                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CodeMode for Webflow CodeMode for Webflow
ID mbgenamkihplkffggckaplhnancbojbk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/codemode-for-webflow/mbgenamkihplkffggckaplhnancbojbk
คำอธิบาย SOME code never hurt anyone...
ขนาดไฟล์ 44.93 KB
จำนวนการติดตั้ง 1,861
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2021-06-13
วันที่เผยแพร่ 2020-10-12
คะแนน 4.44/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Kevin Haag
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://twitter.com/kevinhaag
URL หน้าช่วยเหลือ https://twitter.com/kevinhaag
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CodeMode for Webflow",
    "version": "1.0.4",
    "description": "SOME code never hurt anyone...",
    "permissions": [
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/webflow.com\/design\/*"
            ],
            "js": [
                "lib\/jquery-3.5.1.min.js",
                "contentScript.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/128.png"
        }
    },
    "icons": {
        "128": "images\/128.png"
    },
    "manifest_version": 2
}