Dropship N Paste

Automatically fills in buyers address at your supplier/dropship checkout.

Dropship N Paste là gì?

Dropship N Paste là một tiện ích mở rộng Chrome được phát triển bởi Seller Desk, và tính năng chính của nó là "Automatically fills in buyers address at your supplier/dropship checkout.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dropship N Paste

Tải xuống các tệp mở rộng Dropship N Paste 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

                        DropShip N Paste V2 helps automate the tedious task of copying and pasting a buyers shipping address from your dropship orders to the supplier checkout. Currently supporting over 80 suppliers, 11 Order Management software and native support for many more.  

If you sell on Amazon, eBay or Shopify and dropship from Walmart, Kmart, Amazon, Aliexpress, Jet, Lowes, Target, Wayfair or any one of the other 80+ suppliers we support it is time to start letting DropShip N Paste fill in your buyer addresses instantly. 

How much time does this tool actually save you? It takes the average dropshipper 40-60 seconds to enter a buyers address manually. Using our tool it takes between 2-6 seconds depending on how fast you can click one button. It automatically fills in the buyers complete address including phone number (which can be substituted for your own in Options)

So what are you waiting for? Start saving hundreds of dollars and hours of your time in your drop-shipping business. 

UPDATE Sep 2019 Version 2 IS HERE!: We have updated the extension and now use Stripe for payments. If you already have a subscription through Chrome Webstore Payments please cancel that here: https://pay.google.com/payments/u/0/home#subscriptionsAndServices

Then after installing this update you will be given the option to start a NEW free trial. Just remember the trial is valid for 14 days for one email. If you enter a new email your trial will end. 

Version 2 now supports copying addresses from Amazon Seller Central both on Order page and main orders list page as well as support for adding notes from main orders list page.

If you have any issues using our tool please contact us at our website dropshipnpaste.com

If you have your own custom website or order management software and would like to use Dropship N Paste shoot us a email and we will try and add support for you. Checkout all the suppliers we support at DropShipNPaste.com                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dropship N Paste Dropship N Paste
ID mhfkipjbjoggoibcnilbbhdmojekjico
URL Chính Thức https://chromewebstore.google.com/detail/dropship-n-paste/mhfkipjbjoggoibcnilbbhdmojekjico
Mô tả Automatically fills in buyers address at your supplier/dropship checkout.
Kích Thước Tệp 401 KB
Số Lần Cài Đặt 772
Phiên Bản Hiện Tại 2.0.3
Cập Nhật Lần Cuối 2020-03-10
Ngày Phát Hành 2020-03-10
Đánh Giá 3.07/5 Tổng số 29 Đánh Giá
Nhà Phát Triển Seller Desk
Loại Thanh Toán in_app
Trang Web Mở Rộng http://www.dropshipnpaste.com
URL Trang Trợ Giúp https://mysellerdesk.com/dropshipNPaste/faq/
URL Trang Chính Sách Bảo Mật http://mysellerdesk.com/dropshipNPaste/privacy-policy-and-tos
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dropship N Paste",
    "version": "2.0.3",
    "description": "Automatically fills in buyers address at your supplier\/dropship checkout.",
    "offline_enabled": true,
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "contextMenus"
    ],
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "",
        "default_title": "Dropship N Paste",
        "default_icon": {
            "19": "imgs\/19dis.png",
            "38": "imgs\/38dis.png"
        }
    },
    "commands": {
        "copy": {
            "suggested_key": {
                "default": "Ctrl+Shift+C",
                "windows": "Ctrl+Shift+C",
                "linux": "Ctrl+Shift+C",
                "mac": "Command+Shift+C"
            },
            "description": "Copy detected address to clipboard"
        },
        "paste": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "windows": "Ctrl+Shift+V",
                "linux": "Ctrl+Shift+V",
                "mac": "Command+Shift+V"
            },
            "description": "Paste address in clipboard on page"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.appath.com\/app\/orders"
            ],
            "js": [
                "js\/vendors\/bluebird.min.js",
                "js\/vendors\/xregexp-all.js",
                "js\/vendors\/url-match.js",
                "js\/vendors\/jquery.min.js",
                "js\/vendors\/clipboard.min.js",
                "js\/vendors\/usaddress.js",
                "js\/ContactParser.js",
                "js\/content-apppath.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/sellercentral.amazon.com\/orders-v3*"
            ],
            "js": [
                "js\/vendors\/jquery.min.js",
                "js\/content-scripts\/seller-notes.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content-scripts\/tag.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "options\/css\/popup.css"
            ],
            "js": [
                "js\/vendors\/jquery.min.js",
                "js\/modal.js",
                "js\/vendors\/url-match.js",
                "js\/Storage.js",
                "js\/ContactParser.js",
                "js\/DOM.js",
                "js\/content-scripts\/_generic.js",
                "js\/popup.js",
                "js\/content-scripts\/drag-and-drop.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/k2b-bulk.ebay.com\/ws\/*"
            ],
            "js": [
                "js\/vendors\/jquery.min.js",
                "js\/content-scripts\/ebay-seller-notes.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "imgs\/*.png"
    ]
}