gBay - eBay inside Gmail
Manage eBay inside Gmail
What is gBay - eBay inside Gmail?
gBay - eBay inside Gmail is a Chrome extension developed by Omer Korner & Or Duan, and its main feature is "Manage eBay inside Gmail".
Extension Screenshots
Download gBay - eBay inside Gmail Extension CRX File
Download gBay - eBay inside Gmail extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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. Extension Basic Information
| Name | |
| ID | ikjconljhjapilgmmdmefadjiknddgaa |
| Official URL | https://chromewebstore.google.com/detail/gbay-ebay-inside-gmail/ikjconljhjapilgmmdmefadjiknddgaa |
| Description | Manage eBay inside Gmail |
| File Size | 35.04 KB |
| Installation Count | 39 |
| Current Version | 0.0.3 |
| Last Updated | 2016-04-17 |
| Publish Date | 2016-04-17 |
| Rating | 5.00/5 Total 2 Ratings |
| Developer | Omer Korner & Or Duan |
| Payment Type | free |
| Supported Languages | 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"
]
} | |