Ciqual tables - My favorite items
Adds the possibility to save certain foods as favorites
Wat is Ciqual tables - My favorite items?
Ciqual tables - My favorite items is een Chrome-extensie ontwikkeld door Vincent Denoual, en de belangrijkste functie is "Adds the possibility to save certain foods as favorites".
Extensie Screenshots
Download het CRX-bestand van de extensie Ciqual tables - My favorite items
Download Ciqual tables - My favorite items-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | hgppemfkocieckgfcofgjmifcoenoleg |
Officiële URL | https://chromewebstore.google.com/detail/ciqual-tables-my-favorite/hgppemfkocieckgfcofgjmifcoenoleg |
Beschrijving | Adds the possibility to save certain foods as favorites |
Bestandsgrootte | 33.66 KB |
Aantal Installaties | 48 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2022-01-27 |
Publicatiedatum | 2022-01-24 |
Ontwikkelaar | Vincent Denoual |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://chrome.google.com/webstore/search/vincentdenoual?_category=extensions |
Help Pagina-URL | https://www.linkedin.com/in/vincentdenoual/ |
Ondersteunde Talen | 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" ] } |