MyParcel

Create MyParcel labels from any website. Retrieve all the information you need to create a shipping label in one click.

什麼是MyParcel?

MyParcel是由MyParcel開發的Chrome擴展程式,該擴展的主要功能是“Create MyParcel labels from any website. Retrieve all the information you need to create a shipping label in one click.”。

擴展截圖

screenshot

下載MyParcel擴展crx文件

下載MyParcel擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        # The no. 1 shipping platform for every online entrepreneur.
We are MyParcel, the platform with which every online entrepreneur, large or small, can easily create shipping labels to send parcels, mail, letterbox parcels, and pallets. To destinations inland and abroad. Our goal is to make the services of major carriers accessible to every online entrepreneur so that they have time for what they are good at: doing business. We do this with our easy and accessible shipping service, smart IT solutions, and the most personal customer service.

# How does it work?
Automatically import your orders from any desired sales channel into the platform and print out your shipping labels in no time. Have your packages picked up or bring them yourself to a PostNL or Instabox delivery point. Your customer receives the track & trace information, and you can keep an overview of all shipments in the MyParcel platform.

# Just like the other 36,000 webshops, experience…
- Our free personal customer service. We offer you direct telephone support!
- How to save time and money printing your shipping labels.
- That you are not tied to anything! We do not charge monthly fees.

# The advantages.
- Link the fields of your platform with the Google Chrome Extension.
- Select the shipping address from any page in Google Chrome.
- Create a shipping label to any country in the world.
- Choose from all available package types, shipping and delivery options.
- Print all your labels in one batch.
- No integration needed in your webshop.

# FAQ
– Why does the extension ask for so many permissions?

The extension needs access to all data in all webpages because it fetches addresses using the HTML on the webpage you visit.

It needs to "read and change data" on all sites to both fetch the address data and map fields from any site you visit while the extension is open. Reading data is needed to get the address data from the website you visit and want to create a shipment from. The box and tooltip around elements you hover your mouse over while mapping are inserted into the HTML (and removed/hidden after), which explains the "changing data" part.

The data the extension saves (in your browser's synchronized storage) are the mappings you make in "Instellingen > Velden mappen"
Example: If you map a few fields on "mywebshop.com/orders?id=32" it will save the following entry to the storage: "myparcel-mapping-mywebshop.com", with its value being something along the lines of: "{person:,company:}" etc, which is a JSON encoded object containing all the fields you've mapped. We don't save this data anywhere ourselves.

The data that is sent to our backoffice (which is what runs inside the popup) are the website URL and the HTML contents it may or may not have found in the fields that were either mapped by you or pre-mapped by us. 
Example: {
  person: "Mr. Parcel",
  company: "MyParcel",
  postal_code: "2132WT",
  ...
}

This data is put in the corresponding fields and it will be handled the same way as if you were to create a shipment "manually" through the regular shipment form in our backoffice. The only difference is we do keep track of the URL of the website you've created a shipment from. This is used for internal insights, for example if we notice a lot of shipments being created on an e-commerce platform we don't have a plug-in for, we might decide to start developing one.                    

擴展基本資訊

名稱 MyParcel MyParcel
ID ncomggonlkegodkmolbbepaebmoikbph
官方網址 https://chromewebstore.google.com/detail/myparcel/ncomggonlkegodkmolbbepaebmoikbph
簡介 Create MyParcel labels from any website. Retrieve all the information you need to create a shipping label in one click.
檔案大小 37.48 KB
安裝次數 3,084
目前版本 2.7.2
更新時間 2022-06-09
上架時間 2020-06-23
評分 2.80/5 共 5 次評分
開發者 MyParcel
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.myparcel.nl/koppelingen/google-chrome-extensie/
說明頁面URL https://www.myparcel.nl/koppelingen/google-chrome-extensie/
隱私政策頁面URL https://www.myparcel.nl/voorwaarden-beleid
支援的語言 en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "background": {
        "scripts": [
            ".\/js\/myparcel-background.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2,
    "minimum_chrome_version": "64",
    "permissions": [
        "*:\/\/*\/*",
        "activeTab",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_icon": ".\/images\/icon-myparcel-128px.png"
    },
    "icons": {
        "16": ".\/images\/icon-myparcel-16px.png",
        "48": ".\/images\/icon-myparcel-48px.png",
        "128": ".\/images\/icon-myparcel-128px.png"
    },
    "name": "MyParcel ",
    "short_name": "MyParcel",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.myparcel.nl\/*"
        ]
    },
    "version": "2.7.2",
    "version_name": "2.7.2"
}