Fedex Quickship

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

O que é Fedex Quickship?

Fedex Quickship é uma extensão do Chrome desenvolvida por qiaoweitang, e sua principal característica é "Allow user to automatically import the shipping information from ebay to Fedex Ship Manager".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Fedex Quickship

Baixe arquivos de extensão Fedex Quickship no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Fedex Quickship Fedex Quickship
ID dfmbabhglgmlobabfaggddfgnpinnfek
URL Oficial https://chrome.google.com/webstore/detail/fedex-quickship/dfmbabhglgmlobabfaggddfgnpinnfek
Descrição Allow user to automatically import the shipping information from ebay to Fedex Ship Manager
Tamanho do Arquivo 15.54 KB
Contagem de Instalações 128
Versão Atual 1.1.1
Última Atualização 2017-12-03
Data de Publicação 2017-12-03
Classificação 2.00/5 Total de 1 Avaliações
Desenvolvedor qiaoweitang
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}