Fedex Quickship
Allow user to automatically import the shipping information from ebay to Fedex Ship Manager
Cos'è Fedex Quickship?
Fedex Quickship è un'estensione di Chrome sviluppata da qiaoweitang, e la sua funzione principale è "Allow user to automatically import the shipping information from ebay to Fedex Ship Manager".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Fedex Quickship
Scarica i file di estensione Fedex Quickship in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | dfmbabhglgmlobabfaggddfgnpinnfek |
URL Ufficiale | https://chrome.google.com/webstore/detail/fedex-quickship/dfmbabhglgmlobabfaggddfgnpinnfek |
Descrizione | Allow user to automatically import the shipping information from ebay to Fedex Ship Manager |
Dimensione del File | 15.54 KB |
Conteggio Installazioni | 128 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2017-12-03 |
Data di Pubblicazione | 2017-12-03 |
Valutazione | 2.00/5 Totale 1 Valutazioni |
Sviluppatore | qiaoweitang |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |