Passify
Password Protect your Google Docs, Sheets, and Slides!
Passifyคืออะไร?
Passify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://passify.io และคุณลักษณะหลักของมันคือ "Password Protect your Google Docs, Sheets, and Slides!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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\/*" ] } |