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 |
公式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 |
Eメール | [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" } } |