git-crypt-decrypter
an extension to decrypt 'git-crypt'-encrypted files
Cos'è git-crypt-decrypter?
git-crypt-decrypter è un'estensione di Chrome sviluppata da stefan.geisbacher, e la sua funzione principale è "an extension to decrypt 'git-crypt'-encrypted files".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione git-crypt-decrypter
Scarica i file di estensione git-crypt-decrypter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | git-crypt-decrypter |
ID | nibfnchbklghnfedfopimjmffpkpgbjm |
URL Ufficiale | https://chromewebstore.google.com/detail/git-crypt-decrypter/nibfnchbklghnfedfopimjmffpkpgbjm |
Descrizione | an extension to decrypt 'git-crypt'-encrypted files |
Dimensione del File | 294 KB |
Conteggio Installazioni | 27 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2022-02-19 |
Data di Pubblicazione | 2020-09-13 |
Sviluppatore | stefan.geisbacher |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/sgeisbacher/git-crypt-browser-plugins |
URL della Pagina di Aiuto | https://github.com/sgeisbacher/git-crypt-browser-plugins |
Lingue Supportate | 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" } } |