Func.Farm

Create serverless functions from code snippets

什麼是Func.Farm?

Func.Farm是由Dror Gensler開發的Chrome擴展程式,該擴展的主要功能是“Create serverless functions from code snippets”。

擴展截圖

screenshot

下載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 Func.Farm
ID pohdddempcllapaglglhajjgmfphhdfg
官方網址 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
}