git-crypt-decrypter
an extension to decrypt 'git-crypt'-encrypted files
Co to jest git-crypt-decrypter?
git-crypt-decrypter to rozszerzenie Chrome opracowane przez stefan.geisbacher, a jego główną funkcją jest „an extension to decrypt 'git-crypt'-encrypted files”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia git-crypt-decrypter
Pobierz pliki rozszerzeń git-crypt-decrypter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | git-crypt-decrypter |
ID | nibfnchbklghnfedfopimjmffpkpgbjm |
Oficjalny URL | https://chromewebstore.google.com/detail/git-crypt-decrypter/nibfnchbklghnfedfopimjmffpkpgbjm |
Opis | an extension to decrypt 'git-crypt'-encrypted files |
Rozmiar pliku | 294 KB |
Liczba instalacji | 27 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2022-02-19 |
Data Publikacji | 2020-09-13 |
Deweloper | stefan.geisbacher |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/sgeisbacher/git-crypt-browser-plugins |
Adres URL Strony Pomocy | https://github.com/sgeisbacher/git-crypt-browser-plugins |
Obsługiwane Języki | 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" } } |