Recipe Box
A set of tools to make recipes online better.
Recipe Boxคืออะไร?
Recipe Box เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Recipe Box และคุณลักษณะหลักของมันคือ "A set of tools to make recipes online better."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Recipe Box
ดาวน์โหลดไฟล์ส่วนขยาย Recipe Box ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Recipe Box |
ID | lcfhmcjffbgobdkdhnmmglogcbfkccpc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/recipe-box/lcfhmcjffbgobdkdhnmmglogcbfkccpc |
คำอธิบาย | A set of tools to make recipes online better. |
ขนาดไฟล์ | 61.44 KB |
จำนวนการติดตั้ง | 141 |
เวอร์ชันปัจจุบัน | 0.3.0 |
อัปเดตครั้งล่าสุด | 2022-03-15 |
วันที่เผยแพร่ | 2022-03-10 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Recipe Box |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://ryanmacdonald.ca/ |
URL หน้าช่วยเหลือ | https://ryanmacdonald.ca/ |
ภาษาที่รองรับ | 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": [] } ] } |