Badge counter for Gmail

Get badge counter for a custom user search query. Click on the toolbar button opens the newest email.

Τι είναι το Badge counter for Gmail;

Το Badge counter for Gmail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον InBasic, και η κύρια λειτουργία του είναι "Get badge counter for a custom user search query. Click on the toolbar button opens the newest email.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Badge counter for Gmail

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

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

                        This extension displays the number of unread emails from multiple Google accounts in the badge area of the toolbar button which is equivalent to "is:unread label:inbox" search query. The extension does not store user's credential information for privacy concerns instead uses Gmail active session to perform searches (for the extension to operate you need to be logged-in into at least one Gmail account). Since Gmail allows multiple account access, this extension is also capable to display the number of unread emails for all the logged-in accounts.

A user can define multiple search queries for each account from the options page and the badge number will be the total number of search items. When the toolbar button is clicked the most recent Gmail thread is opened (this action is configurable from the options page). To open other Gmail accounts, use the right-click context-menu items.

The extension supports all the Gmail operators in the search queries hence you can define a complex search query and ask the extension to observe these queries.

This extension is useful for those who need a powerful Gmail notifier, not a Gmail client.                    

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

Όνομα Badge counter for Gmail Badge counter for Gmail
ID adlbmiigjompmjfconlohceehffmfedj
Επίσημο URL https://chromewebstore.google.com/detail/badge-counter-for-gmail/adlbmiigjompmjfconlohceehffmfedj
Περιγραφή Get badge counter for a custom user search query. Click on the toolbar button opens the newest email.
Μέγεθος Αρχείου 53.3 KB
Αριθμός Εγκαταστάσεων 271
Τρέχουσα Έκδοση 0.1.0
Τελευταία Ενημέρωση 2018-01-18
Ημερομηνία Δημοσίευσης 2018-01-18
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής InBasic
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://add0n.com/badge-counter.html
Διεύθυνση URL της Σελίδας Βοήθειας http://add0n.com/badge-counter.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.1.0",
    "name": "Badge counter for Gmail",
    "description": "Get badge counter for a custom user search query. Click on the toolbar button opens the newest email.",
    "permissions": [
        "alarms",
        "storage",
        "contextMenus",
        "*:\/\/mail.google.com\/mail\/u\/*"
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "18": "data\/icons\/18.png",
        "19": "data\/icons\/19.png",
        "32": "data\/icons\/32.png",
        "36": "data\/icons\/36.png",
        "38": "data\/icons\/38.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "homepage_url": "http:\/\/add0n.com\/badge-counter.html",
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/16.png",
            "18": "data\/icons\/18.png",
            "19": "data\/icons\/19.png",
            "32": "data\/icons\/32.png",
            "36": "data\/icons\/36.png",
            "38": "data\/icons\/38.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "webext.js",
            "gmail.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "data\/inject.js"
            ]
        }
    ],
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true
    }
}