Encrypt / Decrypt plugin
This extension will encrypt and decrypt text using a rest service or local javascript.
什麼是Encrypt / Decrypt plugin?
Encrypt / Decrypt plugin是由http://faparicio.com開發的Chrome擴展程式,該擴展的主要功能是“This extension will encrypt and decrypt text using a rest service or local javascript.”。
擴展截圖
下載Encrypt / Decrypt plugin擴展crx文件
下載Encrypt / Decrypt plugin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | cmeagmnlnffckafpnjccbhnkgfifmecg |
官方網址 | https://chrome.google.com/webstore/detail/cmeagmnlnffckafpnjccbhnkgfifmecg |
簡介 | This extension will encrypt and decrypt text using a rest service or local javascript. |
檔案大小 | 1.3 MB |
安裝次數 | 283 |
目前版本 | 1.0.1 |
更新時間 | 2017-06-28 |
上架時間 | 2017-06-28 |
開發者 | http://faparicio.com |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } } |