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開發的Chrome擴展程式,該擴展的主要功能是“Transfers a shipping address from an Etsy receipt to Paypal's USPS shipping form.”。
下載Etsy To Paypal Shipping Helper擴展crx文件
下載Etsy To Paypal Shipping Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | kmnbmahfpoalahdmfcibcjbbmcemjioe |
| 官方網址 | 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"
]
}
]
} | |