Google Keep Encryptor

Google Keep Encryptor

Google Keep Encryptorคืออะไร?

Google Keep Encryptor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Naiqus Zhang และคุณลักษณะหลักของมันคือ "Google Keep Encryptor"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Keep Encryptor

ดาวน์โหลดไฟล์ส่วนขยาย Google Keep Encryptor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        With Google Keep Encryptor, you can easily keep your sensitive information on Google Keep only with you and/or share it with your trustworthy friends. Your text will be encrypted as ciphertext with Stanford Javascript Crypto Library (http://bitwiseshiftleft.github.io/sjcl/).

> SJCL is secure. It uses the industry-standard AES algorithm at 128, 192 or 256 bits; the SHA256 hash function; the HMAC authentication code; the PBKDF2 password strengthener; and the CCM and OCB authenticated-encryption modes. Just as importantly, the default parameters are sensible: SJCL strengthens your passwords by a factor of 1000 and salts them to protect against rainbow tables, and it authenticates every message it sends to prevent it from being modified. 

**WARNING**: If you don't remember the password, you will lose all the information on that encrypted note!!!** It's strongly recommended to use password hints as labels or add them to the title of your encrypted notes.

Android and iOS: 
Currently the Chrome mobile app doesn't support extensions. In order to decrypt your notes, you have to install the Tampermonkey script on your phone and use the Google Keep website on mobile browsers. Further information can be found at https://github.com/Naiqus/Google-Keep-Encryptor/blob/master/README.md                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Keep Encryptor Google Keep Encryptor
ID cedkkpjolghccafognlkficihjmfedhc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-keep-encryptor/cedkkpjolghccafognlkficihjmfedhc
คำอธิบาย Google Keep Encryptor
ขนาดไฟล์ 328 KB
จำนวนการติดตั้ง 2,639
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2022-03-25
วันที่เผยแพร่ 2019-09-18
คะแนน 3.63/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Naiqus Zhang
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/naiqus/google-keep-encryptor
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Keep Encryptor",
    "description": "Google Keep Encryptor",
    "version": "1.0.0",
    "permissions": [
        "declarativeContent",
        "https:\/\/keep.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/keep.google.com\/*"
            ],
            "js": [
                "content-scripts\/sjcl.js",
                "content-scripts\/content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": [],
    "icons": {
        "512": "images\/icon512.png"
    },
    "manifest_version": 2
}