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
电子邮箱 [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
    }
}