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是由Victor H. Garcia開發的Chrome擴展程式,該擴展的主要功能是“This extension is for securing text strings in an easy way. It can encrypt strings, so they will be secure to be stored.”。

擴展截圖

screenshot

下載vSecure擴展crx文件

下載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 vSecure
ID emodnkohpjmlkodhbfmijobljmlboedp
官方網址 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'"
}