Passify
Password Protect your Google Docs, Sheets, and Slides!
Passify là gì?
Passify là một tiện ích mở rộng Chrome được phát triển bởi https://passify.io, và tính năng chính của nó là "Password Protect your Google Docs, Sheets, and Slides!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Passify
Tải xuống các tệp mở rộng Passify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Passify |
ID | cnonkgapmofblpkobcagimkjidigjpib |
URL Chính Thức | https://chromewebstore.google.com/detail/passify/cnonkgapmofblpkobcagimkjidigjpib |
Mô tả | Password Protect your Google Docs, Sheets, and Slides! |
Kích Thước Tệp | 32.29 KB |
Số Lần Cài Đặt | 803 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2020-07-02 |
Ngày Phát Hành | 2020-07-02 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://passify.io |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.passify.io |
URL Trang Trợ Giúp | https://www.passify.io |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |