Team Secrets: Encrypt Gmail Attachments

Simple end-to-end encryption and multi-factor authentication in Gmail

Qu'est-ce que Team Secrets: Encrypt Gmail Attachments ?

Team Secrets: Encrypt Gmail Attachments est une extension Chrome développée par https://teamsecrets.io, et sa fonction principale est "Simple end-to-end encryption and multi-factor authentication in Gmail".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Team Secrets: Encrypt Gmail Attachments

Téléchargez les fichiers d'extension Team Secrets: Encrypt Gmail Attachments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Practice safe sharing - Team Secrets protects the sensitive files your teams are sharing in Gmail with end-to-end encryption, 2-factor authentication, file expiration and viewer verification.

Just write an email as you normally would - Team Secrets adds a simple “Encrypt” button to your Gmail compose window so you can enable secure encryption for all of your attachments.  Team Secrets will even remind you to encrypt when you drag-and-drop an attachment to Gmail (you can easily disable this reminder if you choose).

Team Secrets uses bank-grade encryption to protect your file attachments from the moment you start uploading until they are opened by the recipient. Snooping on the transfer or stealing the file will result in something completely undecipherable.

Set an expiration timer for your file attachments in days, weeks or months.

Team Secrets ensures that anyone opening your file attachments is authenticated using at least 2 forms of ID. Only the people you choose can assemble the keys necessary to decrypt the files.  Require 2-factor authentication by entering a mobile number for your recipients. Add an extra layer of security by generating an unguessable secure random passphrase.

Unlike other encrypted email providers, anyone can receive encrypted attachments without registering and with no software to install.  They simply need to be able to receive email and enter a code received on their mobile or the passphrase you provide (or both).

Your team is already sharing sensitive files in Gmail so it’s time to get them secured. Team Secrets works seamlessly with your existing collaborative tools to level up your security.

* How secure is Team Secrets?*
Team Secrets uses open source, third-party audited encryption algorithms (XSalsa20Poly1305) that run completely in your browser so no unencrypted data is ever sent to a Team Secrets server.  Team Secrets is unable to see or decrypt any of your data and does not have access to any encryption keys.

*Who should use Team Secrets?*
Team Secrets is great for CPAs, attorneys/lawyers, healthcare professionals - anyone who regularly sends sensitive file attachments with personal information to clients or patients. It’s also great for security and privacy conscious individuals and teams.

* Pricing *
Team Secrets is free for unlimited use for 30 days. At the end of the trial, you will be asked to enter payment information or disable the product.  Team Secrets will never charge you or a recipient to decrypt a file.

For more, see pricing at https://www.teamsecrets.io/ 

*About extension permissions*
When you install Team Secrets, you will be notified that Team Secrets can:
- “Read and change all your data on a number of websites” - this allows Team Secrets to determine when you are sending an email that might need encryption
- “Display notifications” - this lets Team Secrets show you upload progress and informational messages
- “Communicate with cooperating websites” - allows Team Secrets to communicate with the secure teamsecrets.io website so it can upload encrypted data for secure transfer

*Need help?*
Visit https://www.teamsecrets.io/support to live chat with our support team or email us at [email protected] or contact us on Twitter at https://twitter.com/UseTeamSecrets 

Terms of Service: https://www.teamsecrets.io/terms                    

Informations de Base sur l'Extension

Nom Team Secrets: Encrypt Gmail Attachments Team Secrets: Encrypt Gmail Attachments
ID jnnbpljconmbempgfgjdfaclacgmdfci
URL Officiel https://chromewebstore.google.com/detail/team-secrets-encrypt-gmai/jnnbpljconmbempgfgjdfaclacgmdfci
Description Simple end-to-end encryption and multi-factor authentication in Gmail
Taille du Fichier 1011 KB
Nombre d'Installations 33
Version Actuelle 1.2.2
Dernière Mise à Jour 2019-03-20
Date de Publication 2019-03-20
Évaluation 4.60/5 Total 10 Évaluations
Développeur https://teamsecrets.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.teamsecrets.io/
URL de la Page d'Aide https://www.teamsecrets.io/support/
URL de la Page de Politique de Confidentialité https://www.teamsecrets.io/privacy
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "version": "1.2.2",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content-gmail.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/app.teamsecrets.io\/*"
            ],
            "js": [
                "contentscript-webapp.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": [],
        "default_title": "__MSG_appShortName__"
    },
    "web_accessible_resources": [
        "inject-gmail.js",
        "content-gmail.css",
        "templates\/attachment-info.html",
        "worker_proxy.html",
        "worker_proxy.js",
        "images\/*",
        "img\/*",
        "movelock-worker-fileNacl.min.js"
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "unlimitedStorage",
        "system.cpu",
        "system.memory",
        "notifications",
        "clipboardWrite",
        "",
        "identity",
        "https:\/\/www.googleapis.com\/"
    ],
    "oauth2": {
        "client_id": "190937511253-vqm4oh1arcl89el564r2adnlj3uq4q37.apps.googleusercontent.com",
        "scopes": [
            "profile",
            "https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/*.google.com; object-src 'self'"
}