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”。
擴展截圖
下載Inline PGP擴展crx文件
下載Inline PGP擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | ilbcgbbjobmcldeiebijihfbndolhbfl |
官方網址 | 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" ] } |