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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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\/*"
    ]
}