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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.                    

확장 프로그램 기본 정보

이름 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
이메일 [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"
        }
    ]
}