Ciqual tables - My favorite items
Adds the possibility to save certain foods as favorites
什麼是Ciqual tables - My favorite items?
Ciqual tables - My favorite items是由Vincent Denoual開發的Chrome擴展程式,該擴展的主要功能是“Adds the possibility to save certain foods as favorites”。
擴展截圖
下載Ciqual tables - My favorite items擴展crx文件
下載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 |
官方網址 | 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" ] } |