Cook'n Recipe Capture Plugin

This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.

Что такое Cook'n Recipe Capture Plugin?

Cook'n Recipe Capture Plugin - это расширение Chrome, разработанное https://www.dvo.com, и его основная функция - "This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.".

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

screenshot
screenshot

Скачать файл CRX расширения Cook'n Recipe Capture Plugin

Скачайте файлы расширений Cook'n Recipe Capture Plugin в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Capture any recipe from any website with just one click.  Go to www.dvo.com to get Cook'n and start capturing recipes!

With your recipes in Cook'n, you can easily find them again, print them, scale them, add them to a menu plan, make shopping lists, analyze nutritional values, sync them to your mobile device for easy access in the kitchen...and so much more!                    

Основная информация о расширении

Название Cook'n Recipe Capture Plugin Cook'n Recipe Capture Plugin
ID lmbjckidphkdpchgfangolfcanlcodgf
Официальный URL https://chromewebstore.google.com/detail/cookn-recipe-capture-plug/lmbjckidphkdpchgfangolfcanlcodgf
Описание This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.
Размер файла 96.7 KB
Количество установок 7,404
Текущая Версия 11.1
Последнее Обновление 2023-04-19
Дата публикации 2019-05-14
Рейтинг 4.14/5 Всего 14 оценок
Разработчик https://www.dvo.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.dvo.com/capture-plugin-info.php
URL страницы помощи http://www.dvo.com/capture-plugin-info.php
URL страницы политики конфиденциальности http://www.dvo.com/privacy.php
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Cook'n Recipe Capture Plugin",
    "description": "This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.",
    "version": "11.1",
    "action": {
        "default_icon": "\/img\/cook'n.png",
        "default_popup": "\/html\/popup.html"
    },
    "icons": {
        "16": "\/img\/cookn_16.png",
        "48": "\/img\/cookn_48.png",
        "128": "\/img\/cookn_128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/app.cookn-cloud.com\/",
        "http:\/\/localhost:5918\/"
    ],
    "short_name": "Cook'n Recipe Capture Plugin",
    "background": {
        "service_worker": "\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.dvo.com\/*"
            ],
            "js": [
                "\/js\/dvo_msg_listeners.js",
                "\/js\/helper\/storage.js",
                "\/js\/helper\/session.js"
            ]
        }
    ],
    "options_page": "\/html\/options.html",
    "options_ui": {
        "page": "\/html\/options.html"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.dvo.com\/*"
        ]
    }
}