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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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\/*" ] } |