git-crypt-decrypter
an extension to decrypt 'git-crypt'-encrypted files
Qu'est-ce que git-crypt-decrypter ?
git-crypt-decrypter est une extension Chrome développée par stefan.geisbacher, et sa fonction principale est "an extension to decrypt 'git-crypt'-encrypted files".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension git-crypt-decrypter
Téléchargez les fichiers d'extension git-crypt-decrypter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | git-crypt-decrypter |
ID | nibfnchbklghnfedfopimjmffpkpgbjm |
URL Officiel | https://chromewebstore.google.com/detail/git-crypt-decrypter/nibfnchbklghnfedfopimjmffpkpgbjm |
Description | an extension to decrypt 'git-crypt'-encrypted files |
Taille du Fichier | 294 KB |
Nombre d'Installations | 27 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2022-02-19 |
Date de Publication | 2020-09-13 |
Développeur | stefan.geisbacher |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/sgeisbacher/git-crypt-browser-plugins |
URL de la Page d'Aide | https://github.com/sgeisbacher/git-crypt-browser-plugins |
Langues Prises en Charge | 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" } } |