git-crypt-decrypter
an extension to decrypt 'git-crypt'-encrypted files
什么是git-crypt-decrypter?
git-crypt-decrypter是由stefan.geisbacher开发的Chrome扩展程序,该扩展的主要功能是“an extension to decrypt 'git-crypt'-encrypted files”。
扩展截图
下载git-crypt-decrypter扩展crx文件
下载git-crypt-decrypter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
an extension to decrypt 'git-crypt'-encrypted files on github.com.
featues:
- decrypt files on details-file-view
- decrypt files in PR-review-view
source-code: https://github.com/sgeisbacher/git-crypt-browser-plugins
disclaimer:
this extension is just a proof-of-concept, so use it at your own risk. !!! the entered key-data is saved unencrypted in local-storage of chrome-browser, and so accessible for everyone with access to your chrome-browser !!! no warranty 扩展基本信息
| 名称 | |
| ID | nibfnchbklghnfedfopimjmffpkpgbjm |
| 官方URL | https://chromewebstore.google.com/detail/git-crypt-decrypter/nibfnchbklghnfedfopimjmffpkpgbjm |
| 简介 | an extension to decrypt 'git-crypt'-encrypted files |
| 文件大小 | 294 KB |
| 安装次数 | 27 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2022-02-19 |
| 上架时间 | 2020-09-13 |
| 开发者 | stefan.geisbacher |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/sgeisbacher/git-crypt-browser-plugins |
| 帮助页面URL | https://github.com/sgeisbacher/git-crypt-browser-plugins |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "git-crypt-decrypter",
"version": "1.0.1",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"description": "an extension to decrypt 'git-crypt'-encrypted files",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.github.com\/*"
],
"js": [
"scripts\/content.js"
]
}
],
"background": {
"scripts": [
"scripts\/background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "A popup will come"
}
} | |