CodeMode for Webflow
SOME code never hurt anyone...
什麼是CodeMode for Webflow?
CodeMode for Webflow是由Kevin Haag開發的Chrome擴展程式,該擴展的主要功能是“SOME code never hurt anyone...”。
擴展截圖
下載CodeMode for Webflow擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | mbgenamkihplkffggckaplhnancbojbk |
| 官方網址 | 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
} | |