Team Secrets: Encrypt Gmail Attachments

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

Team Secrets: Encrypt Gmail Attachmentsとは何ですか?

Team Secrets: Encrypt Gmail Attachmentsはhttps://teamsecrets.ioによって開発されたChromeの拡張機能で、その主な機能は「Simple end-to-end encryption and multi-factor authentication in Gmail」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Team Secrets: Encrypt Gmail Attachments拡張機能のCRXファイルをダウンロード

Team Secrets: Encrypt Gmail Attachments拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Team Secrets: Encrypt Gmail Attachments Team Secrets: Encrypt Gmail Attachments
ID jnnbpljconmbempgfgjdfaclacgmdfci
公式URL https://chromewebstore.google.com/detail/team-secrets-encrypt-gmai/jnnbpljconmbempgfgjdfaclacgmdfci
説明 Simple end-to-end encryption and multi-factor authentication in Gmail
ファイルサイズ 1011 KB
インストール数 33
現在のバージョン 1.2.2
最終更新日 2019-03-20
公開日 2019-03-20
評価 4.60/5 合計 10 レビュー
開発者 https://teamsecrets.io
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.teamsecrets.io/
ヘルプページのURL https://www.teamsecrets.io/support/
プライバシーポリシーページのURL https://www.teamsecrets.io/privacy
対応言語 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'"
}