AnyCrypt

This extension enables automatic encrypting and decrypting of gpg messages

AnyCrypt란 무엇입니까?

AnyCrypt은(는) lettergramm에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension enables automatic encrypting and decrypting of gpg messages"입니다.

확장 프로그램 스크린샷

AnyCrypt 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Right-click encryption and decryption between friends on the web.                    

확장 프로그램 기본 정보

이름 AnyCrypt AnyCrypt
ID hddfngccldhojkjdcoamhdaiaoijjbha
공식 URL https://chromewebstore.google.com/detail/anycrypt/hddfngccldhojkjdcoamhdaiaoijjbha
설명 This extension enables automatic encrypting and decrypting of gpg messages
파일 크기 1.13 MB
설치 횟수 33
현재 버전 0.0.1
최근 업데이트 2016-04-28
출시 날짜 2016-04-28
평점 3.50/5 총 2 개의 평점
개발자 lettergramm
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AnyCrypt",
    "description": "This extension enables automatic encrypting and decrypting of gpg messages",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "popup.html",
        "default_page": "anycrypt.html",
        "default_icon": "images\/icon1024.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "js\/scrypt.js",
            "js\/hmac-sha512.js",
            "js\/enc-base64-min.js",
            "js\/jquery-1.11.3.min.js",
            "js\/kbpgp.js",
            "js\/enigma.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-1.11.3.min.js",
                "js\/kbpgp.js",
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*.gif",
        "images\/*.png",
        "style\/*.css",
        "script\/*.js"
    ],
    "icons": {
        "256": "images\/icon256.png",
        "1024": "images\/icon1024.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ]
}