Fedex Quickship
Allow user to automatically import the shipping information from ebay to Fedex Ship Manager
什么是Fedex Quickship?
Fedex Quickship是由qiaoweitang开发的Chrome扩展程序,该扩展的主要功能是“Allow user to automatically import the shipping information from ebay to Fedex Ship Manager”。
扩展截图
下载Fedex Quickship扩展crx文件
下载Fedex Quickship扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension will open a popup window which will allow the user to automatically import the "Ship To" information from the ebay item shipment page for sellers. The user has the option to open Fedex Ship Manager in a new tab, and automatically fill in the corresponding values.
扩展基本信息
名称 | |
ID | dfmbabhglgmlobabfaggddfgnpinnfek |
官方URL | https://chrome.google.com/webstore/detail/fedex-quickship/dfmbabhglgmlobabfaggddfgnpinnfek |
简介 | Allow user to automatically import the shipping information from ebay to Fedex Ship Manager |
文件大小 | 15.54 KB |
安装次数 | 128 |
当前版本 | 1.1.1 |
更新时间 | 2017-12-03 |
上架时间 | 2017-12-03 |
评分 | 2.00/5 共1次评分 |
开发者 | qiaoweitang |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fedex Quickship", "version": "1.1.1", "description": "Allow user to automatically import the shipping information from ebay to Fedex Ship Manager", "browser_action": { "default_title": "Fedex Quickship", "default_popup": "popup.html", "default_icon": { "16": "images\/fedex-ebay_16px.png", "24": "images\/fedex-ebay_24px.png", "32": "images\/fedex-ebay_32px.png" } }, "author": "Qiaowei Tang", "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/www.fedex.com\/shipping\/*", "https:\/\/www.fedex.com\/shipping\/shipAction.do?method=doInitialize&utype=nulls" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |