Google Keep Encryptor

Google Keep Encryptor

Google Keep Encryptor란 무엇입니까?

Google Keep Encryptor은(는) Naiqus Zhang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google Keep Encryptor"입니다.

확장 프로그램 스크린샷

screenshot

Google Keep Encryptor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}