Inline PGP

Automatically detects and decrypts PGP messages on a web page

Inline PGP란 무엇입니까?

Inline PGP은(는) waifutech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically detects and decrypts PGP messages on a web page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Adds ad-hoc end-to-end encryption to any web application. Use PGP with messengers, forums, comment sections - anything, that has a web interface.

Features:
Detects PGP key and message blocks on any web page and replaces them with a nice UI. 
Key management. Generate new or import existing keys.
Encrypts and decrypts text and small files.                    

확장 프로그램 기본 정보

이름 Inline PGP Inline PGP
ID ilbcgbbjobmcldeiebijihfbndolhbfl
공식 URL https://chromewebstore.google.com/detail/inline-pgp/ilbcgbbjobmcldeiebijihfbndolhbfl
설명 Automatically detects and decrypts PGP messages on a web page
파일 크기 3.48 MB
설치 횟수 126
현재 버전 0.1.2
최근 업데이트 2020-10-07
출시 날짜 2019-01-18
평점 3.00/5 총 3 개의 평점
개발자 waifutech
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/waifutech/inline-pgp
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inline PGP",
    "version": "0.1.2",
    "description": "Automatically detects and decrypts PGP messages on a web page",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "dist\/background-build.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "dist\/content-build.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "frame.html",
        "dist\/frame-build.js",
        "dist\/frame-build.css"
    ]
}