Passify
Password Protect your Google Docs, Sheets, and Slides!
Cos'è Passify?
Passify è un'estensione di Chrome sviluppata da https://passify.io, e la sua funzione principale è "Password Protect your Google Docs, Sheets, and Slides!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Passify
Scarica i file di estensione Passify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Passify |
ID | cnonkgapmofblpkobcagimkjidigjpib |
URL Ufficiale | https://chromewebstore.google.com/detail/passify/cnonkgapmofblpkobcagimkjidigjpib |
Descrizione | Password Protect your Google Docs, Sheets, and Slides! |
Dimensione del File | 32.29 KB |
Conteggio Installazioni | 803 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2020-07-02 |
Data di Pubblicazione | 2020-07-02 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://passify.io |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.passify.io |
URL della Pagina di Aiuto | https://www.passify.io |
Lingue Supportate | 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\/*" ] } |