MyParcel

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

Apa itu MyParcel?

MyParcel adalah ekstensi Chrome yang dikembangkan oleh MyParcel, dan fitur utamanya adalah "Create MyParcel labels from any website. Retrieve all the information you need to create a shipping label in one click.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi MyParcel

Unduh file ekstensi MyParcel dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama MyParcel MyParcel
ID ncomggonlkegodkmolbbepaebmoikbph
URL Resmi https://chromewebstore.google.com/detail/myparcel/ncomggonlkegodkmolbbepaebmoikbph
Deskripsi Create MyParcel labels from any website. Retrieve all the information you need to create a shipping label in one click.
Ukuran File 37.48 KB
Jumlah Instalasi 3,084
Versi Saat Ini 2.7.2
Terakhir Diperbarui 2022-06-09
Tanggal Publikasi 2020-06-23
Penilaian 2.80/5 Total 5 Penilaian
Pengembang MyParcel
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.myparcel.nl/koppelingen/google-chrome-extensie/
URL Halaman Bantuan https://www.myparcel.nl/koppelingen/google-chrome-extensie/
URL Halaman Kebijakan Privasi https://www.myparcel.nl/voorwaarden-beleid
Bahasa yang Didukung 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"
}