MyPost Business Buddy
Adds some useful features to MyPost Business
Apa itu MyPost Business Buddy?
MyPost Business Buddy adalah ekstensi Chrome yang dikembangkan oleh paullawriedev, dan fitur utamanya adalah "Adds some useful features to MyPost Business".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi MyPost Business Buddy
Unduh file ekstensi MyPost Business Buddy 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
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.
Informasi Dasar Ekstensi
Nama | MyPost Business Buddy |
ID | ojfmalnbighnldmdoligjhmecpapdfbk |
URL Resmi | https://chromewebstore.google.com/detail/mypost-business-buddy/ojfmalnbighnldmdoligjhmecpapdfbk |
Deskripsi | Adds some useful features to MyPost Business |
Ukuran File | 232 KB |
Jumlah Instalasi | 257 |
Versi Saat Ini | 1.4.5 |
Terakhir Diperbarui | 2023-11-11 |
Tanggal Publikasi | 2022-11-21 |
Penilaian | 5.00/5 Total 10 Penilaian |
Pengembang | paullawriedev |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } } |