Encrypt / Decrypt plugin
This extension will encrypt and decrypt text using a rest service or local javascript.
Was ist Encrypt / Decrypt plugin?
Encrypt / Decrypt plugin ist eine Chrome-Erweiterung, die von http://faparicio.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension will encrypt and decrypt text using a rest service or local javascript.".
Erweiterungsscreenshots
Encrypt / Decrypt plugin-Erweiterungs-CRX-Datei herunterladen
Laden Sie Encrypt / Decrypt plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Do you need to store sensible passwords in an cloud environmemt like EverNote, Confluence, DropBox, Dokuwiki?... It seems secure until someone break security. And then your passwords are exposed. This project is a chrome extension that encrypt your passwords using local resources or using a php code acting as a API. Additionally, you can select the encrypted text and decrypt directly to the clipboard using the right button. (https://github.com/faparicior/FARChromeCryptoTool) Recommendations =============== Personally, I recommend store passwords unencrypted in a local storage like keepass or a plane text field. This software comes with no warranty and his purpose is to add a securyty layer if you have to expose your sensible information like passwords in a cloud and more vulnerable site.
Grundlegende Informationen zur Erweiterung
Name | |
ID | cmeagmnlnffckafpnjccbhnkgfifmecg |
Offizielle URL | https://chrome.google.com/webstore/detail/cmeagmnlnffckafpnjccbhnkgfifmecg |
Beschreibung | This extension will encrypt and decrypt text using a rest service or local javascript. |
Dateigröße | 1.3 MB |
Installationsanzahl | 283 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2017-06-28 |
Veröffentlichungsdatum | 2017-06-28 |
Entwickler | http://faparicio.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Encrypt \/ Decrypt plugin", "description": "This extension will encrypt and decrypt text using a rest service or local javascript.", "version": "1.0.1", "author": "Fernando Aparicio", "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon-small.png" }, "permissions": [ "activeTab", "contextMenus", "clipboardWrite" ], "background": { "page": "background.html" } } |