git-crypt-decrypter

an extension to decrypt 'git-crypt'-encrypted files

Co je git-crypt-decrypter?

git-crypt-decrypter je rozšíření Chrome vyvinuté stefan.geisbacher, a jeho hlavní funkcí je „an extension to decrypt 'git-crypt'-encrypted files“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření git-crypt-decrypter

Stáhněte si soubory rozšíření git-crypt-decrypter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název git-crypt-decrypter git-crypt-decrypter
ID nibfnchbklghnfedfopimjmffpkpgbjm
Oficiální URL https://chromewebstore.google.com/detail/git-crypt-decrypter/nibfnchbklghnfedfopimjmffpkpgbjm
Popis an extension to decrypt 'git-crypt'-encrypted files
Velikost souboru 294 KB
Počet instalací 27
Aktuální Verze 1.0.1
Poslední Aktualizace 2022-02-19
Datum Vydání 2020-09-13
Vývojář stefan.geisbacher
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/sgeisbacher/git-crypt-browser-plugins
URL Stránky Nápovědy https://github.com/sgeisbacher/git-crypt-browser-plugins
Podporované Jazyky 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"
    }
}