git-crypt-decrypter
an extension to decrypt 'git-crypt'-encrypted files
Что такое git-crypt-decrypter?
git-crypt-decrypter - это расширение Chrome, разработанное stefan.geisbacher, и его основная функция - "an extension to decrypt 'git-crypt'-encrypted files".
Снимки экрана расширения
Скачать файл CRX расширения git-crypt-decrypter
Скачайте файлы расширений 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"
}
} | |