Etsy To Paypal Shipping Helper
Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.
Qu'est-ce que Etsy To Paypal Shipping Helper ?
Etsy To Paypal Shipping Helper est une extension Chrome développée par Zetaphor, et sa fonction principale est "Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.".
Télécharger le fichier CRX de l'extension Etsy To Paypal Shipping Helper
Téléchargez les fichiers d'extension Etsy To Paypal Shipping Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Etsy To Paypal Shipping Helper |
ID | kmnbmahfpoalahdmfcibcjbbmcemjioe |
URL Officiel | https://chromewebstore.google.com/detail/etsy-to-paypal-shipping-h/kmnbmahfpoalahdmfcibcjbbmcemjioe |
Description | Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form. |
Taille du Fichier | 109 KB |
Nombre d'Installations | 19 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2017-02-15 |
Date de Publication | 2017-02-14 |
Développeur | Zetaphor |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Zetaphor/etsy-usps-helper/ |
Langues Prises en Charge | 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" ] } ] } |