Ciqual tables - My favorite items

Adds the possibility to save certain foods as favorites

Was ist Ciqual tables - My favorite items?

Ciqual tables - My favorite items ist eine Chrome-Erweiterung, die von Vincent Denoual entwickelt wurde, und ihr Hauptmerkmal ist "Adds the possibility to save certain foods as favorites".

Erweiterungsscreenshots

screenshot
screenshot

Ciqual tables - My favorite items-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ciqual tables - My favorite items-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Ciqual tables - My favorite items Ciqual tables - My favorite items
ID hgppemfkocieckgfcofgjmifcoenoleg
Offizielle URL https://chromewebstore.google.com/detail/ciqual-tables-my-favorite/hgppemfkocieckgfcofgjmifcoenoleg
Beschreibung Adds the possibility to save certain foods as favorites
Dateigröße 33.66 KB
Installationsanzahl 48
Aktuelle Version 0.0.1
Letztes Update 2022-01-27
Veröffentlichungsdatum 2022-01-24
Entwickler Vincent Denoual
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://chrome.google.com/webstore/search/vincentdenoual?_category=extensions
Hilfeseite URL https://www.linkedin.com/in/vincentdenoual/
Unterstützte Sprachen 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"
    ]
}