vSecure
This extension is for securing text strings in an easy way. It can encrypt strings, so they will be secure to be stored.
vSecureคืออะไร?
vSecure เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Victor H. Garcia และคุณลักษณะหลักของมันคือ "This extension is for securing text strings in an easy way. It can encrypt strings, so they will be secure to be stored."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย vSecure
ดาวน์โหลดไฟล์ส่วนขยาย vSecure ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Q: What encryption algorithm is used for encryption? A: The Advanced Encryption Standard (AES) is a U.S. Federal Information Processing Standard (FIPS). It was selected after a 5-year process where 15 competing designs were evaluated. It supports AES-128, AES-192, and AES-256. It will pick the variant by the size of the key you pass in. Q: Is it safe? A: No effective cryptanalysis of AES cipher is known to date, it's officially recommended by many security agencies (including NSA). It's more than enough, it could take billions of years for a Brute Force attack to find a password to decrypt original message. Q: Do you store the strings or passwords? A: No, we don't. Since the encryption happens on client-side, it's safe, it does not send any data to our servers. Important note: We do NOT store a copy of the text or secret word. Also vSecure is using client-side encryption (Browser encryption). You even can disconnect from the internet after opening the extension, and encrypt being completely offline. So you'll be sure that we don't have a copy of your data or secret word. Icon credits: vSecure icon by Yankoa: yankoa.deviantart.com Under CC license: creativecommons.org/licenses/by/3.0/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | vSecure |
ID | emodnkohpjmlkodhbfmijobljmlboedp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/vsecure/emodnkohpjmlkodhbfmijobljmlboedp |
คำอธิบาย | This extension is for securing text strings in an easy way. It can encrypt strings, so they will be secure to be stored. |
ขนาดไฟล์ | 653 KB |
จำนวนการติดตั้ง | 253 |
เวอร์ชันปัจจุบัน | 2.0.2 |
อัปเดตครั้งล่าสุด | 2022-04-12 |
วันที่เผยแพร่ | 2016-02-29 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Victor H. Garcia |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://vsecure.azurewebsites.net |
URL หน้าช่วยเหลือ | https://vsecure.azurewebsites.net/howto.html |
URL หน้านโยบายความเป็นส่วนตัว | https://drive.google.com/file/d/10aRkD_Hhx_kdxeZxZC52NDczuZvmXA6k/view?usp=sharing |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "vSecure", "description": "This extension is for securing text strings in an easy way. It can encrypt strings, so they will be secure to be stored.", "version": "2.0.2", "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "vSecure - Securing text string easier.", "default_popup": "index.html#form" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |