Etsy To Paypal Shipping Helper

Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.

Etsy To Paypal Shipping Helper란 무엇입니까?

Etsy To Paypal Shipping Helper은(는) Zetaphor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form."입니다.

Etsy To Paypal Shipping Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension adds a button to an Etsy receipt labelled "Create USPS/PayPal Label". When clicked, this button opens the USPS shipping label form on PayPal, and transfers the Etsy receipt address to that form.                    

확장 프로그램 기본 정보

이름 Etsy To Paypal Shipping Helper Etsy To Paypal Shipping Helper
ID kmnbmahfpoalahdmfcibcjbbmcemjioe
공식 URL https://chromewebstore.google.com/detail/etsy-to-paypal-shipping-h/kmnbmahfpoalahdmfcibcjbbmcemjioe
설명 Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.
파일 크기 109 KB
설치 횟수 19
현재 버전 1.0
최근 업데이트 2017-02-15
출시 날짜 2017-02-14
개발자 Zetaphor
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Zetaphor/etsy-usps-helper/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Etsy To Paypal Shipping Helper",
    "description": "Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.",
    "author": "Zetaphor",
    "homepage_url": "http:\/\/zetaphor.me",
    "version": "1.0",
    "icons": {
        "16": "icon\/icon_16.png",
        "48": "icon\/icon_48.png",
        "128": "icon\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon\/icon_16.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.etsy.com\/your\/orders\/*"
            ],
            "css": [
                "css\/etsy_form.css"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/etsy_address.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.paypal.com\/*\/cgi-bin\/webscr?cmd=_ship-now"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/paypal_form.js"
            ]
        }
    ]
}