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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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 } } |