Gmail™ Notifier (Developer Edition)

Multiple label and account notifier for Google Mail (Gmail), and more!

Τι είναι το Gmail™ Notifier (Developer Edition);

Το Gmail™ Notifier (Developer Edition) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον InBasic, και η κύρια λειτουργία του είναι "Multiple label and account notifier for Google Mail (Gmail), and more!".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Gmail™ Notifier (Developer Edition)

Λήψη αρχείων επέκτασης Gmail™ Notifier (Developer Edition) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        This is a rewrite of my "Notifier for Gmail" extension. The idea is to have a flexible email notifier to get notified on any user-requested query. Same as the original extension, this one does not need credentials to work. It relies on the logged-in accounts.

Features:
1. Notifies of incoming emails from any user-defined query
2. Supports all common actions: Mark as read, report spam, archive, delete right from the popup view
3. Lists all emails that match the current query on the popup view
4. Supports desktop notification and customized sound alerts
5. Supports viewing emails with provided content-security policy to prevent the loading of any remote resources.
6. Supports customization of the tooltip notification

This extension is compatible with Gmail API and hence with email delegation. It is possible to assign one or multiple accounts to use this interface to communicate with Gmail. Also, the extension optionally supports native messaging to be able to communicate with the "notmuch" email client. both of these features are still disabled for this release.

Notes:
This is still an experimental extension. Please report bugs or request new features either on the FAQs page or the GitHub page.

Privacy: 
This extension only communicates with Gmail to show unread emails or to perform an action like mark an email as read. There are no other server-side activities.                    

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

Όνομα Gmail™ Notifier (Developer Edition) Gmail™ Notifier (Developer Edition)
ID inglgcknnendooehdkhplbmhhbfkngmg
Επίσημο URL https://chromewebstore.google.com/detail/gmail-notifier-developer/inglgcknnendooehdkhplbmhhbfkngmg
Περιγραφή Multiple label and account notifier for Google Mail (Gmail), and more!
Μέγεθος Αρχείου 476 KB
Αριθμός Εγκαταστάσεων 1,662
Τρέχουσα Έκδοση 2.1.0
Τελευταία Ενημέρωση 2021-09-18
Ημερομηνία Δημοσίευσης 2021-05-05
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής InBasic
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/inb.cor.txt
Υποστηριζόμενες Γλώσσες en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.1.0",
    "name": "Gmail\u2122 Notifier (Developer Edition)",
    "description": "__MSG_description__",
    "default_locale": "en",
    "homepage_url": "https:\/\/add0n.com\/gmail-notifier.html",
    "permissions": [
        "notifications",
        "storage",
        "alarms",
        "identity",
        "idle",
        "https:\/\/mail.google.com\/",
        "https:\/\/accounts.google.com\/",
        "contextMenus"
    ],
    "optional_permissions": [
        "nativeMessaging",
        "downloads"
    ],
    "icons": {
        "16": "data\/icons\/colors\/red\/16.png",
        "32": "data\/icons\/colors\/red\/32.png",
        "48": "data\/icons\/colors\/red\/48.png",
        "64": "data\/icons\/colors\/red\/64.png",
        "128": "data\/icons\/colors\/red\/128.png",
        "256": "data\/icons\/colors\/red\/256.png",
        "512": "data\/icons\/colors\/red\/512.png"
    },
    "browser_action": [],
    "background": {
        "persistent": false,
        "scripts": [
            "core.js",
            "accounts.js",
            "configs.js",
            "sax.js",
            "engines\/rss\/core.js",
            "engines\/api\/core.js",
            "engines\/native\/core.js",
            "background.js",
            "badge.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/u\/*"
            ],
            "js": [
                "data\/inject\/watch.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": false,
        "open_in_tab": true
    }
}