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은(는) https://www.dvo.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Cook'n Recipe Capture Plugin 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
        ]
    }
}