git-crypt-decrypter
an extension to decrypt 'git-crypt'-encrypted files
什麼是git-crypt-decrypter?
git-crypt-decrypter是由stefan.geisbacher開發的Chrome擴展程式,該擴展的主要功能是“an extension to decrypt 'git-crypt'-encrypted files”。
擴展截圖
下載git-crypt-decrypter擴展crx文件
下載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 |
ID | nibfnchbklghnfedfopimjmffpkpgbjm |
官方網址 | 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" } } |