git-crypt-decrypter
an extension to decrypt 'git-crypt'-encrypted files
O que é git-crypt-decrypter?
git-crypt-decrypter é uma extensão do Chrome desenvolvida por stefan.geisbacher, e sua principal característica é "an extension to decrypt 'git-crypt'-encrypted files".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão git-crypt-decrypter
Baixe arquivos de extensão git-crypt-decrypter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | git-crypt-decrypter |
ID | nibfnchbklghnfedfopimjmffpkpgbjm |
URL Oficial | https://chromewebstore.google.com/detail/git-crypt-decrypter/nibfnchbklghnfedfopimjmffpkpgbjm |
Descrição | an extension to decrypt 'git-crypt'-encrypted files |
Tamanho do Arquivo | 294 KB |
Contagem de Instalações | 27 |
Versão Atual | 1.0.1 |
Última Atualização | 2022-02-19 |
Data de Publicação | 2020-09-13 |
Desenvolvedor | stefan.geisbacher |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/sgeisbacher/git-crypt-browser-plugins |
URL da Página de Ajuda | https://github.com/sgeisbacher/git-crypt-browser-plugins |
Idiomas Suportados | 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" } } |