Func.Farm

Create serverless functions from code snippets

Что такое Func.Farm?

Func.Farm - это расширение Chrome, разработанное Dror Gensler, и его основная функция - "Create serverless functions from code snippets".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Func.Farm

Скачайте файлы расширений 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
Официальный 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
}