MyParcel

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

Qu'est-ce que MyParcel ?

MyParcel est une extension Chrome développée par MyParcel, et sa fonction principale est "Create MyParcel labels from any website. Retrieve all the information you need to create a shipping label in one click.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension MyParcel

Téléchargez les fichiers d'extension MyParcel 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

                        # 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.                    

Informations de Base sur l'Extension

Nom MyParcel MyParcel
ID ncomggonlkegodkmolbbepaebmoikbph
URL Officiel https://chromewebstore.google.com/detail/myparcel/ncomggonlkegodkmolbbepaebmoikbph
Description Create MyParcel labels from any website. Retrieve all the information you need to create a shipping label in one click.
Taille du Fichier 37.48 KB
Nombre d'Installations 3,084
Version Actuelle 2.7.2
Dernière Mise à Jour 2022-06-09
Date de Publication 2020-06-23
Évaluation 2.80/5 Total 5 Évaluations
Développeur MyParcel
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.myparcel.nl/koppelingen/google-chrome-extensie/
URL de la Page d'Aide https://www.myparcel.nl/koppelingen/google-chrome-extensie/
URL de la Page de Politique de Confidentialité https://www.myparcel.nl/voorwaarden-beleid
Langues Prises en Charge 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"
}