gBay - eBay inside Gmail

Manage eBay inside Gmail

Что такое gBay - eBay inside Gmail?

gBay - eBay inside Gmail - это расширение Chrome, разработанное Omer Korner & Or Duan, и его основная функция - "Manage eBay inside Gmail".

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

screenshot

Скачать файл CRX расширения gBay - eBay inside Gmail

Скачайте файлы расширений gBay - eBay inside Gmail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        A small extension aimed at eBay sellers. 

On every email you receive from eBay customers inside Gmail, it adds a small button next to the customer's username. Clicking the button quickly sends you to the eBay order search, with the customers username already pre-filled. This saves you the hassle of copy-pasting the link and waiting for eBay to load.                    

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

Название gBay - eBay inside Gmail gBay - eBay inside Gmail
ID ikjconljhjapilgmmdmefadjiknddgaa
Официальный URL https://chromewebstore.google.com/detail/gbay-ebay-inside-gmail/ikjconljhjapilgmmdmefadjiknddgaa
Описание Manage eBay inside Gmail
Размер файла 35.04 KB
Количество установок 39
Текущая Версия 0.0.3
Последнее Обновление 2016-04-17
Дата публикации 2016-04-17
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Omer Korner & Or Duan
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gBay - eBay inside Gmail",
    "short_name": "gBay",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Manage eBay inside Gmail",
    "permissions": [
        "tabs",
        "https:\/\/mail.google.com\/*"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "jquery-2.2.2.min.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/googleads.g.doubleclick.net https:\/\/www.googleadservices.com https:\/\/ssl.google-analytics.com https:\/\/clients5.google.com https:\/\/apis.google.com;object-src 'self'",
    "web_accessible_resources": [
        "images\/ebay_link.png"
    ]
}