Ciqual tables - My favorite items
Adds the possibility to save certain foods as favorites
Ciqual tables - My favorite itemsคืออะไร?
Ciqual tables - My favorite items เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vincent Denoual และคุณลักษณะหลักของมันคือ "Adds the possibility to save certain foods as favorites"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ciqual tables - My favorite items
ดาวน์โหลดไฟล์ส่วนขยาย Ciqual tables - My favorite items ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds a "favorites" feature to the French Agency for Food, Environmental and Occupational Health & Safety (ANSES), hence allowing easy comparison of nutrition data between user-favorited foods. Favorites data is saved within the browser's extension memory: it remains private and is not shared over the internet. This add-on is independent from Anses.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | hgppemfkocieckgfcofgjmifcoenoleg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ciqual-tables-my-favorite/hgppemfkocieckgfcofgjmifcoenoleg |
คำอธิบาย | Adds the possibility to save certain foods as favorites |
ขนาดไฟล์ | 33.66 KB |
จำนวนการติดตั้ง | 48 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2022-01-27 |
วันที่เผยแพร่ | 2022-01-24 |
ผู้พัฒนา | Vincent Denoual |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://chrome.google.com/webstore/search/vincentdenoual?_category=extensions |
URL หน้าช่วยเหลือ | https://www.linkedin.com/in/vincentdenoual/ |
ภาษาที่รองรับ | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "0.0.1", "author": "Vincent Denoual", "default_locale": "fr", "content_scripts": [ { "matches": [ "https:\/\/ciqual.anses.fr\/*" ], "js": [ "content_script.js" ], "css": [ "content_script.css" ], "run_at": "document_end" } ], "action": { "default_icon": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "48": "icon48.png" } }, "icons": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "48": "icon48.png" }, "permissions": [ "storage" ] } |