Recipe Box
A set of tools to make recipes online better.
Recipe Box là gì?
Recipe Box là một tiện ích mở rộng Chrome được phát triển bởi Recipe Box, và tính năng chính của nó là "A set of tools to make recipes online better.".
Ả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 Recipe Box
Tải xuống các tệp mở rộng Recipe Box 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
Recipe websites are notorious for many reasons. Chefs, like you, are overwhelmed with ads and units of measurement that aren't familiar to your kitchen. We scroll and pull out converters to make these delicious dishes. Shouldn't it be easier? This is where Recipe Box comes in. We're committed to changing your world with our lovely cooking extension to keep online recipes enjoyable and easy to navigate. Features: • Auto-scroll to the recipe card • Bookmark recipes and sort alphabetically Roadmap: • Organize bookmarks by dish type • Auto-convert to your preferred units • Divide recipe by an amount • Annotate recipes with your own notes We love recipes and their amazing creators. Hit me up with your ideas and features you'd love to see.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Recipe Box |
ID | lcfhmcjffbgobdkdhnmmglogcbfkccpc |
URL Chính Thức | https://chromewebstore.google.com/detail/recipe-box/lcfhmcjffbgobdkdhnmmglogcbfkccpc |
Mô tả | A set of tools to make recipes online better. |
Kích Thước Tệp | 61.44 KB |
Số Lần Cài Đặt | 141 |
Phiên Bản Hiện Tại | 0.3.0 |
Cập Nhật Lần Cuối | 2022-03-15 |
Ngày Phát Hành | 2022-03-10 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Recipe Box |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://ryanmacdonald.ca/ |
URL Trang Trợ Giúp | https://ryanmacdonald.ca/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A set of tools to make recipes online better.", "version": "0.3.0", "manifest_version": 3, "name": "Recipe Box", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "action": { "default_popup": "popup.html", "default_icon": "icon-48.png" }, "permissions": [ "bookmarks", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.bundle.js" ] } ], "web_accessible_resources": [ { "resources": [ "icon-128.png", "icon-48.png", "icon-16.png" ], "matches": [] } ] } |