gBay - eBay inside Gmail

Manage eBay inside Gmail

Vad är gBay - eBay inside Gmail?

gBay - eBay inside Gmail är en Chrome-tillägg utvecklad av Omer Korner & Or Duan, och dess huvudfunktion är "Manage eBay inside Gmail".

Tilläggsskärmbilder

screenshot

Ladda ner gBay - eBay inside Gmail-förlängningens CRX-fil

Ladda ner gBay - eBay inside Gmail-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn gBay - eBay inside Gmail gBay - eBay inside Gmail
ID ikjconljhjapilgmmdmefadjiknddgaa
Officiell webbadress https://chromewebstore.google.com/detail/gbay-ebay-inside-gmail/ikjconljhjapilgmmdmefadjiknddgaa
Beskrivning Manage eBay inside Gmail
Filstorlek 35.04 KB
Antal Installationer 39
Aktuell Version 0.0.3
Senast Uppdaterad 2016-04-17
Publiceringsdatum 2016-04-17
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Omer Korner & Or Duan
Betalningssätt free
Stödda Språk 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"
    ]
}