Encrypt / Decrypt plugin
This extension will encrypt and decrypt text using a rest service or local javascript.
O que é Encrypt / Decrypt plugin?
Encrypt / Decrypt plugin é uma extensão do Chrome desenvolvida por http://faparicio.com, e sua principal característica é "This extension will encrypt and decrypt text using a rest service or local javascript.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Encrypt / Decrypt plugin
Baixe arquivos de extensão Encrypt / Decrypt plugin no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | cmeagmnlnffckafpnjccbhnkgfifmecg |
URL Oficial | https://chrome.google.com/webstore/detail/cmeagmnlnffckafpnjccbhnkgfifmecg |
Descrição | This extension will encrypt and decrypt text using a rest service or local javascript. |
Tamanho do Arquivo | 1.3 MB |
Contagem de Instalações | 283 |
Versão Atual | 1.0.1 |
Última Atualização | 2017-06-28 |
Data de Publicação | 2017-06-28 |
Desenvolvedor | http://faparicio.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |