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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ git-crypt-decrypter git-crypt-decrypter
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"
    }
}