Fedex Quickship
Allow user to automatically import the shipping information from ebay to Fedex Ship Manager
What is Fedex Quickship?
Fedex Quickship is a Chrome extension developed by qiaoweitang, and its main feature is "Allow user to automatically import the shipping information from ebay to Fedex Ship Manager".
Extension Screenshots
Download Fedex Quickship Extension CRX File
Download Fedex Quickship 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
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.
Extension Basic Information
Name | |
ID | dfmbabhglgmlobabfaggddfgnpinnfek |
Official URL | https://chrome.google.com/webstore/detail/fedex-quickship/dfmbabhglgmlobabfaggddfgnpinnfek |
Description | Allow user to automatically import the shipping information from ebay to Fedex Ship Manager |
File Size | 15.54 KB |
Installation Count | 128 |
Current Version | 1.1.1 |
Last Updated | 2017-12-03 |
Publish Date | 2017-12-03 |
Rating | 2.00/5 Total 1 Ratings |
Developer | qiaoweitang |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |