Make Zero - Text Encryption

Encrypt & decrypt your texts in any site.

Make Zero - Text Encryption란 무엇입니까?

Make Zero - Text Encryption은(는) zhy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Encrypt & decrypt your texts in any site."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Make Zero - Text Encryption 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        What can it do?
Make Zero can encrypted your texts in any sites. Then your friends can only read it with the same password.

What are the functions?

1. Select the plaintext, right-click to encrypt.
2. Select the ciphertext, right-click to decrypt.
3. Use Ctrl +,  for fast encryption & decryption of selected texts.
4. Double-click the ciphertext segment to decrypt.
5. Ciphertext will be decrypted automatically after pages loaded with automatic-decryption enabled.
6. The content in the input box will automatically become cipher text after the input is completed .
8. The password can be changed.
9. Support different ciphertext styles, currently there are only three, and more will be added later.

Scenes to be used:
1. Prevent normal text discussions from being caught on social platforms such as Twitter and Whatsapp.
2. Encrypt your important notes stored on Net.

It promises that
1. Never obtain and use any personal information and account information of the user.
2. Store password locally only.                    

확장 프로그램 기본 정보

이름 Make Zero - Text Encryption Make Zero - Text Encryption
ID ihpcojcdiclghnggnlkcinbmfpomefcc
공식 URL https://chromewebstore.google.com/detail/make-zero-text-encryption/ihpcojcdiclghnggnlkcinbmfpomefcc
설명 Encrypt & decrypt your texts in any site.
파일 크기 1.19 MB
설치 횟수 92
현재 버전 1.7.0
최근 업데이트 2021-07-14
출시 날짜 2021-02-24
평점 3.00/5 총 1 개의 평점
개발자 zhy
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sheepzh/make-zero
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_app_name__",
    "version": "1.7.0",
    "description": "__MSG_app_description__",
    "icons": {
        "16": "static\/images\/icon.png",
        "48": "static\/images\/icon.png",
        "128": "static\/images\/icon.png"
    },
    "author": "zhy",
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/github.com\/sheepzh\/make-zero",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Open the popup page."
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_listener.js",
                "content_scripts.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "static\/popup.html",
        "default_icon": "static\/images\/icon.png"
    },
    "manifest_version": 2
}