Safe 2 EAT

We display hygiene ratings next to JustEat and HungryHouse take aways

Что такое Safe 2 EAT?

Safe 2 EAT - это расширение Chrome, разработанное Argha Sarkar, и его основная функция - "We display hygiene ratings next to JustEat and HungryHouse take aways".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Safe 2 EAT

Скачайте файлы расширений Safe 2 EAT в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Safe2Eat helps you to ensure the food you order from JustEat and Deliveroo is safe. It gets the Food Standards Agency (Government agency which carries out restaurant and takeaway inspections) hygiene rating and displays the green label next to your take away.

The green label from Food Standards Agency gives a general idea about how clean your food is going to be. Anything below 3 is considered to be quite bad in my opinion.                    

Основная информация о расширении

Название Safe 2 EAT Safe 2 EAT
ID glfnoaecfcmdpiaofipejdnccoajnakc
Официальный URL https://chrome.google.com/webstore/detail/safe-2-eat/glfnoaecfcmdpiaofipejdnccoajnakc
Описание We display hygiene ratings next to JustEat and HungryHouse take aways
Размер файла 90.24 KB
Количество установок 19
Текущая Версия 2.0.1
Последнее Обновление 2019-05-15
Дата публикации 2019-05-15
Рейтинг 4.13/5 Всего 8 оценок
Разработчик Argha Sarkar
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/arghasarkar/Safe2Eat
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Safe 2 EAT",
    "version": "2.0.1",
    "manifest_version": 2,
    "options_page": "options.html",
    "description": "We display hygiene ratings next to JustEat and HungryHouse take aways",
    "browser_action": {
        "default_icon": {
            "19": "images\/icons\/take-away-32.png",
            "38": "images\/icons\/take-away-64.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icons\/take-away-32.png",
        "128": "images\/icons\/take-away-64.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/*.pusher.com; object-src 'self'",
    "permissions": [
        "contextMenus",
        "activeTab",
        "webRequest",
        "storage",
        "https:\/\/*.pusher.com\/*",
        "*:\/\/pusher.com\/*",
        "*:\/\/*.pusher.com\/",
        "http:\/\/getcouper.com:8000\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/vendors\/jquery.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/fhrs_0_en-gb.jpg",
        "images\/fhrs_1_en-gb.jpg",
        "images\/fhrs_2_en-gb.jpg",
        "images\/fhrs_3_en-gb.jpg",
        "images\/fhrs_4_en-gb.jpg",
        "images\/fhrs_5_en-gb.jpg",
        "images\/fhrs_awaitinginspection_en-gb.jpg"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}