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 |
| 公式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 |
| Eメール | [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
} | |