git-crypt-decrypter

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

What is git-crypt-decrypter?

git-crypt-decrypter is a Chrome extension developed by stefan.geisbacher, and its main feature is "an extension to decrypt 'git-crypt'-encrypted files".

Extension Screenshots

screenshot
screenshot

Download git-crypt-decrypter Extension CRX File

Download git-crypt-decrypter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name git-crypt-decrypter git-crypt-decrypter
ID nibfnchbklghnfedfopimjmffpkpgbjm
Official URL https://chromewebstore.google.com/detail/git-crypt-decrypter/nibfnchbklghnfedfopimjmffpkpgbjm
Description an extension to decrypt 'git-crypt'-encrypted files
File Size 294 KB
Installation Count 27
Current Version 1.0.1
Last Updated 2022-02-19
Publish Date 2020-09-13
Developer stefan.geisbacher
Email [email protected]
Payment Type free
Extension Website https://github.com/sgeisbacher/git-crypt-browser-plugins
Help Page URL https://github.com/sgeisbacher/git-crypt-browser-plugins
Supported Languages 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"
    }
}