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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |