Passify

Password Protect your Google Docs, Sheets, and Slides!

What is Passify?

Passify is a Chrome extension developed by https://passify.io, and its main feature is "Password Protect your Google Docs, Sheets, and Slides!".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Passify Extension CRX File

Download Passify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Passify Passify
ID cnonkgapmofblpkobcagimkjidigjpib
Official URL https://chromewebstore.google.com/detail/passify/cnonkgapmofblpkobcagimkjidigjpib
Description Password Protect your Google Docs, Sheets, and Slides!
File Size 32.29 KB
Installation Count 803
Current Version 0.0.2
Last Updated 2020-07-02
Publish Date 2020-07-02
Rating 5.00/5 Total 3 Ratings
Developer https://passify.io
Email [email protected]
Payment Type free
Extension Website https://www.passify.io
Help Page URL https://www.passify.io
Supported Languages 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\/*"
    ]
}