KodaMail

Email encryption and tracking

ما هو KodaMail؟

KodaMail هو إضافة Chrome تم تطويرها بواسطة https://kodamail.com، والميزة الرئيسية لها هي "Email encryption and tracking".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة KodaMail

قم بتنزيل ملفات الامتداد KodaMail بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Encrypt and Decrypt email and files using Public Private (PGP) or Symmetric encryption.
Track email opens, links clicked, attachment downloads, desktop notifications.

See when your email was read, links clicked and attachments downloaded.
Desktop notification of read emails or links clicked, can be switched off on a thread by thread basis.
Password protect attachments to ensure only the recipient can download.
Delete or disable attachment downloads.

Schedule email delivery using Gmail scheduler with tracking (optional).

Enables encryption and decryption of email and files.
using either Public/Private key or AES 256 encryption.

Uses OpenPGP.js from https://openpgpjs.org so encryption is compatible with other PGP providers such as Proton mail, Mailvelope, GnuPG for Windows etc.

Simple admin allows you to manage and create, download or import keys.
All encryption/decryption is entirely in the browser and you can easily save your keys wherever you want.

Emails and or files can be signed with your private key and the recipient can verify the content using your public key.

More information at: https://kodamail.com/faq                    

معلومات أساسية عن التمديد

الاسم KodaMail KodaMail
ID bbbgdjdihpieibjlcmacacoljegmfkbc
عنوان URL الرسمي https://chromewebstore.google.com/detail/kodamail/bbbgdjdihpieibjlcmacacoljegmfkbc
الوصف Email encryption and tracking
حجم الملف 967 KB
عدد التثبيتات 38
النسخة الحالية 4.6.4
آخر تحديث 2023-08-09
تاريخ النشر 2020-07-04
تقييم 5.00/5 مجموع تقييمات 1
المطور https://kodamail.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://kodamail.com
عنوان صفحة المساعدة https://kodamail.com/faq
عنوان صفحة سياسة الخصوصية https://kodamail.com/privacy
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "KodaMail",
    "description": "Email encryption and tracking",
    "version": "4.6.4",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icons": {
            "16": "images\/new_logo\/kodamail_logo_16x16.png",
            "48": "images\/new_logo\/kodamail_logo_48x48.png",
            "128": "images\/new_logo\/kodamail_logo_128x128.png"
        },
        "default_popup": "popup.html",
        "default_title": "KodaMail Encryption for Gmail"
    },
    "icons": {
        "16": "images\/new_logo\/kodamail_logo_16x16.png",
        "48": "images\/new_logo\/kodamail_logo_48x48.png",
        "128": "images\/new_logo\/kodamail_logo_128x128.png"
    },
    "permissions": [
        "tabs",
        "declarativeContent"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "css\/images\/*",
                "km2_extension.htm",
                "km2_drive.htm",
                "km2_faqs.htm",
                "sandbox_container2.htm",
                "localdrive.htm"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "js\/openpgp\/openpgp.min.js",
                "js\/openpgp\/publicKey.js",
                "js\/jquery-3.6.3.min.js",
                "js\/crypto-js\/aes.js",
                "js\/crypto-js\/pbkdf2.js",
                "js\/crypto-js\/sha256.js",
                "js\/crypto-js\/hmac-sha256.js",
                "js\/crypto-js\/2.5.3-crypto-md5.js",
                "js\/jszip\/jszip.min2.js",
                "js\/jszip\/FileSaver.min.js",
                "js\/pako\/pako.min.js",
                "js\/jquery-ui.min.js",
                "js\/jquery.qtip.min.js",
                "js\/jquery-input-file-text.js",
                "js\/moment.min.js",
                "js\/moment-timezone-with-data.min.js",
                "js\/jquery.timepicker.min.js",
                "js\/spin.min.js",
                "js\/html2canvas.min.js",
                "js\/asmcrypto.min.js",
                "js\/kmext_1.min.js",
                "js\/kmext_2.min.js",
                "js\/kmext_3.min.js",
                "js\/kmext_4.min.js",
                "js\/kmext_5.min.js",
                "js\/kmext_6.min.js",
                "js\/mimetypes.min.js",
                "js\/notify.js"
            ],
            "css": [
                "css\/jquery-ui.min.css",
                "css\/jquery.qtip.min.css",
                "css\/jquery.timepicker.css",
                "css\/style.css",
                "css\/popup.css",
                "css\/sandbox.css"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; style-src 'self'; object-src 'self'"
    }
}