gBay - eBay inside Gmail
Manage eBay inside Gmail
什么是gBay - eBay inside Gmail?
gBay - eBay inside Gmail是由Omer Korner & Or Duan开发的Chrome扩展程序,该扩展的主要功能是“Manage eBay inside Gmail”。
扩展截图
下载gBay - eBay inside Gmail扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |