Keybase
A secure chat button for every profile.
Keybaseคืออะไร?
Keybase เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://keybase.io และคุณลักษณะหลักของมันคือ "A secure chat button for every profile."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keybase
ดาวน์โหลดไฟล์ส่วนขยาย Keybase ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Keybase for Chrome is an official Keybase extension for composing ENCRYPTED messages to any Twitter, Facebook, Reddit, HackerNews, or Github user, from the convenience of your browser. It's an easier chat, and it's end-to-end encrypted. This works even if they have yet to join Keybase. The quick summary: • Everyone with a social network account has a Keybase inbox, *even before they join Keybase* • You don't need to know the recipient's email address or phone number or Keybase username—just a social media username is enough • No one (at Keybase or the social networks) can read your private exchanges • Look for the "Keybase Chat" button on profiles around the web • Toggle specific features in the extension options (chrome://extensions/ and click on "options") At no point in Keybase's protocol does Keybase ever have the keys necessary to read your messages. This is end-to-end encryption, powered by the convenience of public social media usernames. Keybase is open source, and so is this extension: • https://github.com/keybase/client You can find the recent changes for the extension in the history of the "browser" directory. \o/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Keybase |
ID | ognfafcpbkogffpmmdglhbjboeojlefj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/keybase/ognfafcpbkogffpmmdglhbjboeojlefj |
คำอธิบาย | A secure chat button for every profile. |
ขนาดไฟล์ | 434 KB |
จำนวนการติดตั้ง | 7,729 |
เวอร์ชันปัจจุบัน | 1.10.16 |
อัปเดตครั้งล่าสุด | 2018-10-08 |
วันที่เผยแพร่ | 2018-10-08 |
คะแนน | 4.03/5 รวมทั้งหมด 65 คะแนน |
ผู้พัฒนา | https://keybase.io |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Keybase", "short_name": "Keybase", "version": "1.10.16", "description": "A secure chat button for every profile.", "icons": { "48": "images\/icon-keybase-logo-48.png", "128": "images\/icon-keybase-logo-128.png" }, "browser_action": { "default_icon": "images\/icon-keybase-logo-logged-out-64.png", "default_title": "Keybase Chat", "default_popup": "html\/popup.html" }, "permissions": [ "activeTab", "contextMenus", "declarativeContent", "nativeMessaging", "storage" ], "web_accessible_resources": [ "images\/*", "fonts\/*" ], "content_scripts": [ { "matches": [ "https:\/\/reddit.com\/*", "https:\/\/*.reddit.com\/*", "https:\/\/twitter.com\/*", "https:\/\/www.facebook.com\/*", "https:\/\/github.com\/*", "https:\/\/news.ycombinator.com\/user*", "https:\/\/keybase.io\/*" ], "js": [ "js\/bundle.js", "js\/identities.js", "js\/inject.js", "js\/content.js" ], "css": [ "css\/fonts.css", "css\/style.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/identities.js", "js\/background.js" ] }, "options_ui": { "page": "html\/options.html", "chrome_style": true }, "manifest_version": 2 } |