Etsy To Paypal Shipping Helper
Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.
Etsy To Paypal Shipping Helper là gì?
Etsy To Paypal Shipping Helper là một tiện ích mở rộng Chrome được phát triển bởi Zetaphor, và tính năng chính của nó là "Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.".
Tải xuống tệp CRX của tiện ích mở rộng Etsy To Paypal Shipping Helper
Tải xuống các tệp mở rộng Etsy To Paypal Shipping Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Etsy To Paypal Shipping Helper |
ID | kmnbmahfpoalahdmfcibcjbbmcemjioe |
URL Chính Thức | https://chromewebstore.google.com/detail/etsy-to-paypal-shipping-h/kmnbmahfpoalahdmfcibcjbbmcemjioe |
Mô tả | Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form. |
Kích Thước Tệp | 109 KB |
Số Lần Cài Đặt | 19 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2017-02-15 |
Ngày Phát Hành | 2017-02-14 |
Nhà Phát Triển | Zetaphor |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Zetaphor/etsy-usps-helper/ |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |