Fedex Quickship

Allow user to automatically import the shipping information from ebay to Fedex Ship Manager

Vad är Fedex Quickship?

Fedex Quickship är en Chrome-tillägg utvecklad av qiaoweitang, och dess huvudfunktion är "Allow user to automatically import the shipping information from ebay to Fedex Ship Manager".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Fedex Quickship-förlängningens CRX-fil

Ladda ner Fedex Quickship-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Fedex Quickship Fedex Quickship
ID dfmbabhglgmlobabfaggddfgnpinnfek
Officiell webbadress https://chrome.google.com/webstore/detail/fedex-quickship/dfmbabhglgmlobabfaggddfgnpinnfek
Beskrivning Allow user to automatically import the shipping information from ebay to Fedex Ship Manager
Filstorlek 15.54 KB
Antal Installationer 128
Aktuell Version 1.1.1
Senast Uppdaterad 2017-12-03
Publiceringsdatum 2017-12-03
Betyg 2.00/5 Totalt 1 Betyg
Utvecklare qiaoweitang
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}