Mail Boss Scheduler for Gmail
Recurring email scheduler for Gmail
Mail Boss Scheduler for Gmail क्या है?
Mail Boss Scheduler for Gmail https://mailboss.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Recurring email scheduler for Gmail"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mail Boss Scheduler for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Mail Boss Scheduler is a Chrome extension companion to the MailBoss.org email scheduling service. It adds a "Schedule repeating" option next to the existing "Schedule send" option in Gmail's compose message window (click the down arrow on the "Send" button). The "Schedule repeating" option allows you to schedule recurring emails with just a few clicks. After installing this extension, you'll be taken to the Mail Boss web site in order to sign up for the service. It's free!
एक्सटेंशन की मूल जानकारी
नाम | Mail Boss Scheduler for Gmail |
ID | amkkoimhfpljblhfjnkdidlfehhdfnli |
आधिकारिक URL | https://chromewebstore.google.com/detail/mail-boss-scheduler-for-g/amkkoimhfpljblhfjnkdidlfehhdfnli |
विवरण | Recurring email scheduler for Gmail |
फ़ाइल का आकार | 354 KB |
स्थापना संख्या | 1,647 |
वर्तमान संस्करण | 1.12.0 |
अंतिम अपडेट | 2022-08-15 |
प्रकाशन तिथि | 2020-07-04 |
रेटिंग | 4.00/5 कुल 6 रेटिंग्स |
डेवलपर | https://mailboss.org |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.mailboss.org |
सहायता पृष्ठ URL | https://groups.google.com/forum/#!forum/mailboss |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mail Boss Scheduler for Gmail", "short_name": "Mail Boss", "version": "1.12.0", "description": "Recurring email scheduler for Gmail", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/mail.google.com\/*" ], "action": { "default_popup": "options.html" }, "content_scripts": [ { "js": [ "index.js" ], "matches": [ "https:\/\/mail.google.com\/*" ], "all_frames": true } ], "icons": { "16": "images\/mailboss-icon-blue.png", "128": "images\/mailboss-icon-blue.png" } } |