Essential Food Label

Your food label distilled into three items: price per kcalorie, number of ingredients, presence or absence of flavoring.

Τι είναι το Essential Food Label;

Το Essential Food Label είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον foodfate, και η κύρια λειτουργία του είναι "Your food label distilled into three items: price per kcalorie, number of ingredients, presence or absence of flavoring.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Essential Food Label

Λήψη αρχείων επέκτασης Essential Food Label σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Are you sure you know the price of your food? Each of your groceries has a price tag on. Each comes in a certain packaged weight. Still you don’t know the price you pay for your food. That’s because you need 2000kcal each day and the food price is given in £ per kg. What matters is the price/kcals, the real measure whether a food is expensive or good value. To find this number, you’d need to do some time consuming arithmetic. The Essential Food Label chrome extension does this calculation for you. The price/kcalories comes in two ways: price/kcal or Monthly Grocery Equivalent (MGE). The MGE is the total grocery cost if you bought all your food at a certain price/kcal. For example, a price of 0.1p/kcal does not mean a lot for you. We know that in a month a person consumes on average 30 days worth of 2000kcals. Using this piece of information, the 0.1p/kcal becomes a  60£/month grocery equivalent (MGE), or 60£/month grocery bill. That’s a number easier to understand.  
The first indicator we extract from the price and label is the price/kcal or MGE.

You want your food to be as simple as possible. The more ingredients on the product label, the more complex your food. The Essential Food Label counts the number of ingredients. The second indicator: Number of ingredients.

You want the taste of your food to reflect the real freshness and nutritional quality of the food you eat. Flavoring is the ingredient that distorts the real quality of the food you eat. Think of it as “cosmetic surgery for food”. The third indicator the Essential Food Label extracts tells you whether the groceries you chose contain or don’t contain flavoring. It reads as “Contains flavouring” or “Does not contain flavouring”.
The current version only works for Tesco Groceries in UK. Send us an email so that we can keep you updated about geographical expansion to other grocers or markets. 
This extension is made to give you information about the value of your food, nutrition, freshness and food quality.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Essential Food Label Essential Food Label
ID ecbkgpddndfiedbnjnpalaogldnfbonj
Επίσημο URL https://chromewebstore.google.com/detail/essential-food-label/ecbkgpddndfiedbnjnpalaogldnfbonj
Περιγραφή Your food label distilled into three items: price per kcalorie, number of ingredients, presence or absence of flavoring.
Μέγεθος Αρχείου 70.38 KB
Αριθμός Εγκαταστάσεων 21
Τρέχουσα Έκδοση 2.4.0
Τελευταία Ενημέρωση 2017-06-16
Ημερομηνία Δημοσίευσης 2017-06-16
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής foodfate
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής in_app
URL της Σελίδας Πολιτικής Απορρήτου https://essentialfoodlabel.herokuapp.com/privacy_policy
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Essential Food Label",
    "version": "2.4.0",
    "description": "Your food label distilled into three items: price per kcalorie, number of ingredients, presence or absence of flavoring.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tesco.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "content_script.js"
            ],
            "css": [
                "content_style.css"
            ]
        }
    ],
    "icons": {
        "16": "icon_popup.png",
        "48": "icon_extension_page.png",
        "128": "icon_store_page.png"
    },
    "browser_action": {
        "default_popup": "ui.html"
    },
    "permissions": [
        "https:\/\/essentialfoodlabel.herokuapp.com\/*",
        "https:\/\/www.tesco.com\/*",
        "tabs"
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "js.cookie.min.js",
            "background.js"
        ]
    },
    "sandbox": {
        "internal_error_message": "Internal error! Please signin and try again, but if this error persist contact us",
        "free_api_token": "8db955c4-13e3-4db4-975c-22a997cf9910",
        "api_host": "https:\/\/essentialfoodlabel.herokuapp.com",
        "store_host": "https:\/\/www.tesco.com\/",
        "device_key": "7YCBzqBczRe5VbqHmmQBZD6utSKwYuuGNuCZwZQ5qG9nG2"
    }
}