Cookbook
A extension which changes the units for recipes to european units.
Cookbookคืออะไร?
Cookbook เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Robin Glauser และคุณลักษณะหลักของมันคือ "A extension which changes the units for recipes to european units."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cookbook
ดาวน์โหลดไฟล์ส่วนขยาย Cookbook ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
** This is a very experimental extension. Please use with caution. This may break website at any time. ** A extension which changes the units for recipes to european units. It automatically gets loaded and replaces all instances of units in recipes with the european equivalent. This is still very much a draft of the extension. If you find bugs or have an idea how to improve it please submit a issue on github: https://github.com/nahakiole/cookbook/issues Icon from http://iconfinder.com https://www.iconfinder.com/icons/416389/cook_cooking_egg_meet_pan_icon by Squid.ink [Creative Commons Attribution 3.0 Unported License](http://creativecommons.org/licenses/by/3.0)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | agbkfchogbebmhofpgekbffcgikbhifh |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/cookbook/agbkfchogbebmhofpgekbffcgikbhifh |
คำอธิบาย | A extension which changes the units for recipes to european units. |
ขนาดไฟล์ | 14.17 KB |
จำนวนการติดตั้ง | 18 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2015-10-06 |
วันที่เผยแพร่ | 2015-10-06 |
ผู้พัฒนา | Robin Glauser |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cookbook", "description": "A extension which changes the units for recipes to european units.", "version": "1.0", "icons": { "512": "icon.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "translator.js" ], "run_at": "document_end" } ] } |