Func.Farm

Create serverless functions from code snippets

What is Func.Farm?

Func.Farm is a Chrome extension developed by Dror Gensler, and its main feature is "Create serverless functions from code snippets".

Extension Screenshots

screenshot

Download Func.Farm Extension CRX File

Download Func.Farm extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Func.Farm Func.Farm
ID pohdddempcllapaglglhajjgmfphhdfg
Official URL https://chromewebstore.google.com/detail/funcfarm/pohdddempcllapaglglhajjgmfphhdfg
Description Create serverless functions from code snippets
File Size 1.07 MB
Installation Count 16
Current Version 0.1
Last Updated 2019-06-18
Publish Date 2019-06-18
Developer Dror Gensler
Email [email protected]
Payment Type free
Extension Website http://func.farm
Supported Languages 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
}