Framer Code Generator
Framer snippets included for fast prototyping.
什麼是Framer Code Generator?
Framer Code Generator是由ruucm.a開發的Chrome擴展程式,該擴展的主要功能是“Framer snippets included for fast prototyping.”。
擴展截圖
下載Framer Code Generator擴展crx文件
下載Framer Code Generator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A code generator for helping fast prototyping on Framer Web. It includes useful snippets for prototyping on Framer Web. * Framer Web - https://framer.com/projects
擴展基本資訊
名稱 | Framer Code Generator |
ID | lijpejhigjbpnfgonmnknknaoneddjei |
官方網址 | https://chromewebstore.google.com/detail/framer-code-generator/lijpejhigjbpnfgonmnknknaoneddjei |
簡介 | Framer snippets included for fast prototyping. |
檔案大小 | 243 KB |
安裝次數 | 276 |
目前版本 | 0.1.0 |
更新時間 | 2021-01-04 |
上架時間 | 2021-01-04 |
開發者 | ruucm.a |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Framer snippets included for fast prototyping.", "version": "0.1.0", "name": "Framer Code Generator", "options_page": "options.html", "background": { "page": "background.html" }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "permissions": [ "clipboardWrite", "clipboardRead", "contextMenus" ], "commands": { "toggle-feature-foo": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Toggle feature foo" }, "toggle-feature-foo2": { "suggested_key": { "default": "Alt+Shift+Y", "mac": "Alt+Shift+Y" }, "description": "Toggle feature foo2" }, "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+G", "windows": "Alt+Shift+G", "mac": "Alt+Shift+G" } }, "NO-suggested-key": { "description": "user must specify shortcut keys for this from the extensions page" } }, "icons": { "128": "icon-128.png" }, "web_accessible_resources": [ "content.styles.css", "icon-128.png", "icon-34.png" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |