gBay - eBay inside Gmail

Manage eBay inside Gmail

Co to jest gBay - eBay inside Gmail?

gBay - eBay inside Gmail to rozszerzenie Chrome opracowane przez Omer Korner & Or Duan, a jego główną funkcją jest „Manage eBay inside Gmail”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia gBay - eBay inside Gmail

Pobierz pliki rozszerzeń gBay - eBay inside Gmail w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa gBay - eBay inside Gmail gBay - eBay inside Gmail
ID ikjconljhjapilgmmdmefadjiknddgaa
Oficjalny URL https://chromewebstore.google.com/detail/gbay-ebay-inside-gmail/ikjconljhjapilgmmdmefadjiknddgaa
Opis Manage eBay inside Gmail
Rozmiar pliku 35.04 KB
Liczba instalacji 39
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2016-04-17
Data Publikacji 2016-04-17
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Omer Korner & Or Duan
Typ Płatności free
Obsługiwane Języki 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"
    ]
}