Fedex Quickship
Allow user to automatically import the shipping information from ebay to Fedex Ship Manager
Fedex Quickship क्या है?
Fedex Quickship qiaoweitang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow user to automatically import the shipping information from ebay to Fedex Ship Manager"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fedex Quickship एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } ] } |