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 هو إضافة Chrome تم تطويرها بواسطة Zetaphor، والميزة الرئيسية لها هي "Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.".

تحميل ملف CRX للإضافة Etsy To Paypal Shipping Helper

قم بتنزيل ملفات الامتداد Etsy To Paypal Shipping Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}