Passify

Password Protect your Google Docs, Sheets, and Slides!

什麼是Passify?

Passify是由https://passify.io開發的Chrome擴展程式,該擴展的主要功能是“Password Protect your Google Docs, Sheets, and Slides!”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Passify擴展crx文件

下載Passify擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Passify Passify
ID cnonkgapmofblpkobcagimkjidigjpib
官方網址 https://chromewebstore.google.com/detail/passify/cnonkgapmofblpkobcagimkjidigjpib
簡介 Password Protect your Google Docs, Sheets, and Slides!
檔案大小 32.29 KB
安裝次數 803
目前版本 0.0.2
更新時間 2020-07-02
上架時間 2020-07-02
評分 5.00/5 共 3 次評分
開發者 https://passify.io
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.passify.io
說明頁面URL https://www.passify.io
支援的語言 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\/*"
    ]
}