git-crypt-decrypter

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

git-crypt-decrypter là gì?

git-crypt-decrypter là một tiện ích mở rộng Chrome được phát triển bởi stefan.geisbacher, và tính năng chính của nó là "an extension to decrypt 'git-crypt'-encrypted files".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng git-crypt-decrypter

Tải xuống các tệp mở rộng git-crypt-decrypter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên git-crypt-decrypter git-crypt-decrypter
ID nibfnchbklghnfedfopimjmffpkpgbjm
URL Chính Thức https://chromewebstore.google.com/detail/git-crypt-decrypter/nibfnchbklghnfedfopimjmffpkpgbjm
Mô tả an extension to decrypt 'git-crypt'-encrypted files
Kích Thước Tệp 294 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2022-02-19
Ngày Phát Hành 2020-09-13
Nhà Phát Triển stefan.geisbacher
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sgeisbacher/git-crypt-browser-plugins
URL Trang Trợ Giúp https://github.com/sgeisbacher/git-crypt-browser-plugins
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}