Open Email Client

a powerful IMAP and POP3 email client based on notmuch indexing engine

Τι είναι το Open Email Client;

Το Open Email Client είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον InBasic, και η κύρια λειτουργία του είναι "a powerful IMAP and POP3 email client based on notmuch indexing engine".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Open Email Client

Λήψη αρχείων επέκτασης Open Email Client σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This is a simple email client on top of the notmuch command-line email indexing tool.

Before using this extension make sure you are familiar with the following terms:
1. notmuch: https://notmuchmail.org/
2. offlineimap (or another command-line email fetcher): http://www.offlineimap.org/
3. Maildir folder structure: https://en.wikipedia.org/wiki/Maildir

The extension has three sections:
1. "List" view: this view is capable of displaying entries in a search query
2. "Tree" view: this view is meant to list all the folders inside the root Maildir
3. "Search" view: this view is meant to offer custom search

The extension by itself is just a GUI for notmuch. You can add custom commands to improve the UI usability

Also, you can define a single periodic job which is used to fetch emails and display a toolbar badge text.

Make sure to read the FAQs page!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Open Email Client Open Email Client
ID oofmnabdpcibefadlibdpnnbglcehfpj
Επίσημο URL https://chromewebstore.google.com/detail/open-email-client/oofmnabdpcibefadlibdpnnbglcehfpj
Περιγραφή a powerful IMAP and POP3 email client based on notmuch indexing engine
Μέγεθος Αρχείου 522 KB
Αριθμός Εγκαταστάσεων 1,150
Τρέχουσα Έκδοση 0.6.1
Τελευταία Ενημέρωση 2022-05-28
Ημερομηνία Δημοσίευσης 2019-11-04
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής InBasic
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://add0n.com/notmuch-email-client.html
Διεύθυνση URL της Σελίδας Βοήθειας https://add0n.com/notmuch-email-client.html
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/inb.cor.txt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.6.1",
    "name": "Open Email Client",
    "description": "a powerful IMAP and POP3 email client based on notmuch indexing engine",
    "permissions": [
        "nativeMessaging",
        "downloads",
        "storage",
        "contextMenus",
        "notifications",
        "alarms",
        "idle"
    ],
    "offline_enabled": true,
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/gray\/16.png",
            "32": "data\/icons\/gray\/32.png",
            "48": "data\/icons\/gray\/48.png"
        }
    },
    "icons": {
        "16": "data\/icons\/gray\/16.png",
        "32": "data\/icons\/gray\/32.png",
        "48": "data\/icons\/gray\/48.png",
        "64": "data\/icons\/gray\/64.png",
        "128": "data\/icons\/gray\/128.png"
    },
    "background": {
        "scripts": [
            "v2.js",
            "config.js",
            "webext.js",
            "native\/base.js",
            "native\/native.exec.js",
            "native\/native.files.js",
            "native\/native.policy.js",
            "native\/notmuch.tag.js",
            "native\/notmuch.new.js",
            "native\/notmuch.reply.js",
            "native\/notmuch.search.js",
            "native\/notmuch.count.js",
            "native\/notmuch.config.js",
            "native\/notmuch.show.js",
            "badge.js",
            "notification.js",
            "context.js",
            "worker.js"
        ]
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "open_in_tab": true
    },
    "homepage_url": "https:\/\/add0n.com\/notmuch-email-client.html"
}