Passify

Password Protect your Google Docs, Sheets, and Slides!

Τι είναι το Passify;

Το Passify είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://passify.io, και η κύρια λειτουργία του είναι "Password Protect your Google Docs, Sheets, and Slides!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Passify

Λήψη αρχείων επέκτασης 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
Επίσημο 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\/*"
    ]
}