Fedex Quickship
Allow user to automatically import the shipping information from ebay to Fedex Ship Manager
Τι είναι το Fedex Quickship;
Το Fedex Quickship είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον qiaoweitang, και η κύρια λειτουργία του είναι "Allow user to automatically import the shipping information from ebay to Fedex Ship Manager".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fedex Quickship
Λήψη αρχείων επέκτασης 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" } ] } |