Gmail Auto BCC

Automatically BCC all Gmail emails to list of addresses of your choosing.

Τι είναι το Gmail Auto BCC;

Το Gmail Auto BCC είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Clockk.com Inc., και η κύρια λειτουργία του είναι "Automatically BCC all Gmail emails to list of addresses of your choosing.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Gmail Auto BCC

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

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

                        Configure list of email addresses that should be automatically BCC'd on any emails sent through the Gmail website.

You can turn the extension on and off at any time.                    

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

Όνομα Gmail Auto BCC Gmail Auto BCC
ID ldhebpdoflkjjebhhmihfkoakjdebhlp
Επίσημο URL https://chromewebstore.google.com/detail/gmail-auto-bcc/ldhebpdoflkjjebhhmihfkoakjdebhlp
Περιγραφή Automatically BCC all Gmail emails to list of addresses of your choosing.
Μέγεθος Αρχείου 340 KB
Αριθμός Εγκαταστάσεων 437
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2021-10-29
Ημερομηνία Δημοσίευσης 2019-07-10
Αξιολόγηση 3.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Clockk.com Inc.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://clockk.com/
URL της Σελίδας Πολιτικής Απορρήτου https://clockk.com/our-privacy-promise
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Auto BCC",
    "author": "Clockk.com Inc.",
    "homepage_url": "https:\/\/clockk.com\/",
    "short_name": "Gmail Auto BCC",
    "description": "Automatically BCC all Gmail emails to list of addresses of your choosing.",
    "version": "1.0.6",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/clockk auto bcc 48.png",
        "128": "icons\/clockk auto bcc 128.png"
    },
    "browser_action": {
        "default_title": "clockk-auto-bcc",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "gmail.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "gmail.js"
    ],
    "permissions": [
        "https:\/\/mail.google.com\/*",
        "storage"
    ]
}