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ファイルをダウンロード

Etsy To Paypal Shipping Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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