Passify

Password Protect your Google Docs, Sheets, and Slides!

O que é Passify?

Passify é uma extensão do Chrome desenvolvida por https://passify.io, e sua principal característica é "Password Protect your Google Docs, Sheets, and Slides!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Passify

Baixe arquivos de extensão Passify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Google Docs, Sheets, and Slides hold some of the world’s most sensitive information, yet there is no easy way to securely share these documents with large groups of people.

Users typically stay logged into their Google accounts, and it can be irritating to have to log out just to briefly lend your computer to a friend or family member.

With this in mind, we created Passify - the easiest and safest way to lock your important documents and share them with your coworkers, family, and friends.

Visit passify.io for more information!                    

Informações Básicas da Extensão

Nome Passify Passify
ID cnonkgapmofblpkobcagimkjidigjpib
URL Oficial https://chromewebstore.google.com/detail/passify/cnonkgapmofblpkobcagimkjidigjpib
Descrição Password Protect your Google Docs, Sheets, and Slides!
Tamanho do Arquivo 32.29 KB
Contagem de Instalações 803
Versão Atual 0.0.2
Última Atualização 2020-07-02
Data de Publicação 2020-07-02
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://passify.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.passify.io
URL da Página de Ajuda https://www.passify.io
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Passify",
    "description": "Password Protect your Google Docs, Sheets, and Slides!",
    "version": "0.0.2",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "extension.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png"
        },
        "default_title": "Passify - Password Protect your Google Docs, Sheets, and Slides.",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "windows",
        "*:\/\/*.passify.io\/*",
        "*:\/\/*.google.com\/*"
    ]
}