Fedex Quickship

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

Fedex Quickshipとは何ですか?

Fedex Quickshipはqiaoweitangによって開発されたChromeの拡張機能で、その主な機能は「Allow user to automatically import the shipping information from ebay to Fedex Ship Manager」です。

拡張機能のスクリーンショット

screenshot
screenshot

Fedex Quickship拡張機能のCRXファイルをダウンロード

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.                    

拡張機能の基本情報

名前 Fedex Quickship Fedex Quickship
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
Eメール [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"
        }
    ]
}