Passify
Password Protect your Google Docs, Sheets, and Slides!
Qu'est-ce que Passify ?
Passify est une extension Chrome développée par https://passify.io, et sa fonction principale est "Password Protect your Google Docs, Sheets, and Slides!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Passify
Téléchargez les fichiers d'extension Passify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Passify |
ID | cnonkgapmofblpkobcagimkjidigjpib |
URL Officiel | https://chromewebstore.google.com/detail/passify/cnonkgapmofblpkobcagimkjidigjpib |
Description | Password Protect your Google Docs, Sheets, and Slides! |
Taille du Fichier | 32.29 KB |
Nombre d'Installations | 803 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2020-07-02 |
Date de Publication | 2020-07-02 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | https://passify.io |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.passify.io |
URL de la Page d'Aide | https://www.passify.io |
Langues Prises en Charge | 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\/*" ] } |