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"
}
} | |