MyParcel

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

Τι είναι το MyParcel;

Το MyParcel είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον MyParcel, και η κύρια λειτουργία του είναι "Create MyParcel labels from any website. Retrieve all the information you need to create a shipping label in one click.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης MyParcel

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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"
}