Gmail Auto BCC

Open source automatic cc/bcc for gmail.

Co to jest Gmail Auto BCC?

Gmail Auto BCC to rozszerzenie Chrome opracowane przez https://myoutdesk.com, a jego główną funkcją jest „Open source automatic cc/bcc for gmail.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gmail Auto BCC

Pobierz pliki rozszerzeń Gmail Auto BCC w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        - Automatic CC & BCC for Gmail, now with multiple sender support
- Customize rules based on sender information
- Auto-populate recipients for sends and replies
- Ad-free, distraction-free, tracking-free environment
- Enhances Gmail productivity                    

Podstawowe informacje o rozszerzeniu

Nazwa Gmail Auto BCC Gmail Auto BCC
ID ofegoambibneigpiejjadgfahhncpcoh
Oficjalny URL https://chromewebstore.google.com/detail/gmail-auto-bcc/ofegoambibneigpiejjadgfahhncpcoh
Opis Open source automatic cc/bcc for gmail.
Rozmiar pliku 346 KB
Liczba instalacji 485
Aktualna Wersja 1.7
Ostatnia Aktualizacja 2024-02-21
Data Publikacji 2022-09-26
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://myoutdesk.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/MyOutDeskLLC/auto-bcc
Adres URL Strony Pomocy https://github.com/MyOutDeskLLC/auto-bcc
Adres URL Strony Polityki Prywatności https://github.com/MyOutDeskLLC/OSS-Privacy-Policy/blob/main/PRIVACY.md
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Auto BCC",
    "description": "Open source automatic cc\/bcc for gmail.",
    "version": "1.7",
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/inbox.google.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "resources": [
                "src\/icons\/gray-scale-orange-square-mail.png",
                "src\/icons\/orange-square-mail.png"
            ],
            "use_dynamic_url": false
        },
        {
            "matches": [
                "https:\/\/inbox.google.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "resources": [
                "assets\/gmail.ts-7-KkizdX.js"
            ],
            "use_dynamic_url": true
        }
    ],
    "content_scripts": [
        {
            "js": [
                "assets\/gmail.ts-loader-IvZeWprR.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "host_permissions": [
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "128": "src\/icons\/orange-square-mail.png"
        },
        "default_title": "Gmail AutoBCC"
    },
    "icons": {
        "128": "src\/icons\/orange-square-mail.png"
    },
    "options_page": "index.html"
}