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 là gì?
Cook'n Recipe Capture Plugin là một tiện ích mở rộng Chrome được phát triển bởi https://www.dvo.com, và tính năng chính của nó là "This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Cook'n Recipe Capture Plugin
Tải xuống các tệp mở rộng Cook'n Recipe Capture Plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Cook'n Recipe Capture Plugin |
ID | lmbjckidphkdpchgfangolfcanlcodgf |
URL Chính Thức | https://chromewebstore.google.com/detail/cookn-recipe-capture-plug/lmbjckidphkdpchgfangolfcanlcodgf |
Mô tả | This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account. |
Kích Thước Tệp | 96.7 KB |
Số Lần Cài Đặt | 7,404 |
Phiên Bản Hiện Tại | 11.1 |
Cập Nhật Lần Cuối | 2023-04-19 |
Ngày Phát Hành | 2019-05-14 |
Đánh Giá | 4.14/5 Tổng số 14 Đánh Giá |
Nhà Phát Triển | https://www.dvo.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.dvo.com/capture-plugin-info.php |
URL Trang Trợ Giúp | http://www.dvo.com/capture-plugin-info.php |
URL Trang Chính Sách Bảo Mật | http://www.dvo.com/privacy.php |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } } |