Func.Farm
Create serverless functions from code snippets
什么是Func.Farm?
Func.Farm是由Dror Gensler开发的Chrome扩展程序,该扩展的主要功能是“Create serverless functions from code snippets”。
扩展截图
下载Func.Farm扩展crx文件
下载Func.Farm扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Create serverless functions from code snippets found around the web. Run on multiple cloud providers, using multiple languages and versions. Simply select code, right-click on it and select "Create serverless function". Select one of the available providers (AWS Lambda, OpenWhisk and soon GCP and Azure), enter your credentials and secret vault key, and click Run!
扩展基本信息
名称 | Func.Farm |
ID | pohdddempcllapaglglhajjgmfphhdfg |
官方URL | https://chromewebstore.google.com/detail/funcfarm/pohdddempcllapaglglhajjgmfphhdfg |
简介 | Create serverless functions from code snippets |
文件大小 | 1.07 MB |
安装次数 | 16 |
当前版本 | 0.1 |
更新时间 | 2019-06-18 |
上架时间 | 2019-06-18 |
开发者 | Dror Gensler |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://func.farm |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Func.Farm", "version": "0.1", "description": "Create serverless functions from code snippets", "permissions": [ "contextMenus", "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/ff_icon16.png", "32": "images\/ff_icon32.png", "48": "images\/ff_icon48.png", "128": "images\/ff_icon128.png" } }, "icons": { "16": "images\/ff_icon16.png", "32": "images\/ff_icon32.png", "48": "images\/ff_icon48.png", "128": "images\/ff_icon128.png" }, "options_page": "options.html", "manifest_version": 2 } |