Grubhub Instant Food Popup

Hover over a food item in Grubhub and this extension looks up images of that food as well as extra info about the food on Wikipedia.

Что такое Grubhub Instant Food Popup?

Grubhub Instant Food Popup - это расширение Chrome, разработанное daniel.donahoe, и его основная функция - "Hover over a food item in Grubhub and this extension looks up images of that food as well as extra info about the food on Wikipedia.".

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

screenshot

Скачать файл CRX расширения Grubhub Instant Food Popup

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

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

                        Hover over a food item in Grubhub and this extension looks up images of that food as well as extra info about the food on Wikipedia.                    

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

Название Grubhub Instant Food Popup Grubhub Instant Food Popup
ID dajpjmblfhnfemapllckbkfdakkoeiae
Официальный URL https://chrome.google.com/webstore/detail/grubhub-instant-food-popu/dajpjmblfhnfemapllckbkfdakkoeiae
Описание Hover over a food item in Grubhub and this extension looks up images of that food as well as extra info about the food on Wikipedia.
Размер файла 87.64 KB
Количество установок 115
Текущая Версия 1.2
Последнее Обновление 2015-09-14
Дата публикации 2015-09-14
Рейтинг 1.00/5 Всего 4 оценок
Разработчик daniel.donahoe
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grubhub Instant Food Popup",
    "description": "Hover over a food item in Grubhub and this extension looks up images of that food as well as extra info about the food on Wikipedia.",
    "version": "1.2",
    "browser_action": [],
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.grubhub.com\/*",
                "https:\/\/*.grubhub.com\/*"
            ],
            "css": [
                "dist\/jquery.qtip.min.css"
            ],
            "js": [
                "dist\/jquery.min.js",
                "dist\/jquery.qtip.min.js",
                "dist\/imagesloaded.pkg.min.js",
                "dist\/jquery.hoverIntent.js",
                "content.js"
            ]
        }
    ]
}