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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Etsy To Paypal Shipping Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |