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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } |