Etsy To Paypal Shipping Helper
Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.
¿Qué es Etsy To Paypal Shipping Helper?
Etsy To Paypal Shipping Helper es una extensión de Chrome desarrollada por Zetaphor, y su función principal es "Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.".
Descargar Archivo CRX de la Extensión Etsy To Paypal Shipping Helper
Descarga archivos de extensión Etsy To Paypal Shipping Helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Etsy To Paypal Shipping Helper |
ID | kmnbmahfpoalahdmfcibcjbbmcemjioe |
URL Oficial | https://chromewebstore.google.com/detail/etsy-to-paypal-shipping-h/kmnbmahfpoalahdmfcibcjbbmcemjioe |
Descripción | Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form. |
Tamaño del Archivo | 109 KB |
Cantidad de Instalaciones | 19 |
Versión Actual | 1.0 |
Última Actualización | 2017-02-15 |
Fecha de Publicación | 2017-02-14 |
Desarrollador | Zetaphor |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Zetaphor/etsy-usps-helper/ |
Idiomas Soportados | 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" ] } ] } |