MyPost Business Buddy

Adds some useful features to MyPost Business

MyPost Business Buddyとは何ですか?

MyPost Business Buddyはpaullawriedevによって開発されたChromeの拡張機能で、その主な機能は「Adds some useful features to MyPost Business」です。

拡張機能のスクリーンショット

screenshot

MyPost Business Buddy拡張機能のCRXファイルをダウンロード

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
Eメール [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
    }
}