git-crypt-decrypter
an extension to decrypt 'git-crypt'-encrypted files
git-crypt-decrypter क्या है?
git-crypt-decrypter stefan.geisbacher द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "an extension to decrypt 'git-crypt'-encrypted files"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में git-crypt-decrypter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } } |