Food Inspector

Inspects your food for harmful and healthy ingridients. You ought to know what you eat.

Wat is Food Inspector?

Food Inspector is een Chrome-extensie ontwikkeld door Food Inspector Team, en de belangrijkste functie is "Inspects your food for harmful and healthy ingridients. You ought to know what you eat.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Food Inspector

Download Food Inspector-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

                        Features of Food Inspector:

•  Finds additives and shows its details. Filters additives not permitted in other countries (uses data from official sources).

•  Highlights nutrition facts: protein, fat, carbohydrates, salt, sugar, calories, cholesterol.

•  Checks labels for your diet: vegetarian, vegan, organic, kosher, non GMO, halal, lent.

•  Warns you about allergens: wheat, gluten, soy, peanuts, tree nuts, milk, lactose, eggs, fish, shellfish, sesame.

•  Works on any website, just open your favorite online store and check. You also can filter which sites to exclude.

•  Allows you to choose what ingredients to highlight.                    

Basisinformatie over de Extensie

Naam Food Inspector Food Inspector
ID bkajafhlodafjlgifngdagficfaajlaf
Officiële URL https://chromewebstore.google.com/detail/food-inspector/bkajafhlodafjlgifngdagficfaajlaf
Beschrijving Inspects your food for harmful and healthy ingridients. You ought to know what you eat.
Bestandsgrootte 140 KB
Aantal Installaties 21
Huidige Versie 0.2.1
Laatst Bijgewerkt 2020-04-26
Publicatiedatum 2020-04-26
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Food Inspector Team
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://docs.google.com/document/d/e/2PACX-1vS6yPdn8AzRX_Cxo9ftPhTyFBwqbhq6EixOx6foN9FvcYZ1T0EgUjMjcVnTj69lQx_iE8WAwFVvBotA/pub
Ondersteunde Talen en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_description__",
    "version": "0.2.1",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_full_48.png",
        "128": "images\/icon_full_128.png"
    },
    "background": {
        "scripts": [
            "js\/background\/background.js",
            "js\/background\/elementService.js",
            "js\/background\/additiveService.js",
            "js\/background\/dietService.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "exclude_globs": [
                "*google.*",
                "*facebook.com*",
                "*fb.com*",
                "*youtube.com*",
                "*reddit.com*",
                "*vk.com*",
                "*bing.com*",
                "*linkedin.com*",
                "*twitter.com*",
                "*aliexpress.com*",
                "*pinterest.com*",
                "*instagram.com*",
                "*wikipedia.org*",
                "*yandex.*",
                "*github.com*",
                "*yelp.com*",
                "*imdb.com*",
                "*tripadvisor.com*",
                "*apple.com*",
                "*quora.com*",
                "*microsoft.com*",
                "*fandom.com*"
            ],
            "js": [
                "js\/models\/setting.js",
                "js\/models\/element.js",
                "js\/models\/allergen.js",
                "js\/models\/nutrition.js",
                "js\/models\/additive.js",
                "js\/models\/diet.js",
                "js\/libs\/tippy\/popper.min.js",
                "js\/libs\/tippy\/tippy-bundle.iife.min.js",
                "js\/utils.js",
                "js\/index.js"
            ],
            "css": [
                "css\/fontello.css",
                "css\/tippy.css",
                "css\/tippy-light.css",
                "css\/tippy-green-border.css",
                "css\/tippy-red-border.css",
                "css\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "font\/*.*"
    ],
    "browser_action": {
        "default_title": "__MSG_app_title__",
        "default_popup": "views\/popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}