MyPost Business Buddy
Adds some useful features to MyPost Business
MyPost Business Buddy क्या है?
MyPost Business Buddy paullawriedev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds some useful features to MyPost Business"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में MyPost Business Buddy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } } |