Passify
Password Protect your Google Docs, Sheets, and Slides!
¿Qué es Passify?
Passify es una extensión de Chrome desarrollada por https://passify.io, y su función principal es "Password Protect your Google Docs, Sheets, and Slides!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Passify
Descarga archivos de extensión Passify en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | Passify |
ID | cnonkgapmofblpkobcagimkjidigjpib |
URL Oficial | https://chromewebstore.google.com/detail/passify/cnonkgapmofblpkobcagimkjidigjpib |
Descripción | Password Protect your Google Docs, Sheets, and Slides! |
Tamaño del Archivo | 32.29 KB |
Cantidad de Instalaciones | 803 |
Versión Actual | 0.0.2 |
Última Actualización | 2020-07-02 |
Fecha de Publicación | 2020-07-02 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | https://passify.io |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.passify.io |
URL de la Página de Ayuda | https://www.passify.io |
Idiomas Soportados | 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\/*" ] } |