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文件
下载AnyCrypt扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Right-click encryption and decryption between friends on the web. 扩展基本信息
| 名称 | |
| 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"
]
} | |