MyPost Business Buddy

Adds some useful features to MyPost Business

Τι είναι το MyPost Business Buddy;

Το MyPost Business Buddy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον paullawriedev, και η κύρια λειτουργία του είναι "Adds some useful features to MyPost Business".

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

screenshot

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

Λήψη αρχείων επέκτασης MyPost Business Buddy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Adds some useful features to Australia Post's MyPost Business site, as well as useful defaults for new orders and drafts imported from eCommerce platforms.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα MyPost Business Buddy MyPost Business Buddy
ID ojfmalnbighnldmdoligjhmecpapdfbk
Επίσημο URL https://chromewebstore.google.com/detail/mypost-business-buddy/ojfmalnbighnldmdoligjhmecpapdfbk
Περιγραφή Adds some useful features to MyPost Business
Μέγεθος Αρχείου 232 KB
Αριθμός Εγκαταστάσεων 257
Τρέχουσα Έκδοση 1.4.5
Τελευταία Ενημέρωση 2023-11-11
Ημερομηνία Δημοσίευσης 2022-11-21
Αξιολόγηση 5.00/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής paullawriedev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MyPost Business Buddy",
    "version": "1.4.5",
    "description": "Adds some useful features to MyPost Business",
    "permissions": [
        "tabs",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/auspost.com.au\/mypost-business*"
    ],
    "icons": {
        "16": "images\/buddy-16.png",
        "32": "images\/buddy-32.png",
        "48": "images\/buddy-48.png",
        "128": "images\/buddy-128.png"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/auspost.com.au\/mypost-business\/transactions*"
            ],
            "js": [
                "scripts\/transactions.js"
            ]
        },
        {
            "matches": [
                "https:\/\/auspost.com.au\/mypost-business\/shipping-and-tracking\/orders\/add\/retail*"
            ],
            "js": [
                "scripts\/addorder.js"
            ]
        },
        {
            "matches": [
                "https:\/\/auspost.com.au\/mypost-business\/shipping-and-tracking\/orders\/draft\/edit*"
            ],
            "js": [
                "scripts\/editdraft.js"
            ]
        },
        {
            "matches": [
                "https:\/\/auspost.com.au\/mypost-business\/shipping-and-tracking\/track*"
            ],
            "js": [
                "scripts\/tracking.js"
            ]
        },
        {
            "matches": [
                "https:\/\/auspost.com.au\/mypost-business\/shipping-and-tracking\/address-book\/recipients*"
            ],
            "js": [
                "scripts\/addressbook.js"
            ]
        }
    ],
    "action": {
        "default_popup": "html\/popup.html",
        "default_title": "MyPost Business Buddy v1.4.5 by Paul Lawrie"
    },
    "options_page": "html\/options.html",
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    }
}