Func.Farm

Create serverless functions from code snippets

Cos'è Func.Farm?

Func.Farm è un'estensione di Chrome sviluppata da Dror Gensler, e la sua funzione principale è "Create serverless functions from code snippets".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Func.Farm

Scarica i file di estensione Func.Farm in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Func.Farm Func.Farm
ID pohdddempcllapaglglhajjgmfphhdfg
URL Ufficiale https://chromewebstore.google.com/detail/funcfarm/pohdddempcllapaglglhajjgmfphhdfg
Descrizione Create serverless functions from code snippets
Dimensione del File 1.07 MB
Conteggio Installazioni 16
Versione Corrente 0.1
Ultimo Aggiornamento 2019-06-18
Data di Pubblicazione 2019-06-18
Sviluppatore Dror Gensler
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://func.farm
Lingue Supportate 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
}