Encrypt / Decrypt plugin

This extension will encrypt and decrypt text using a rest service or local javascript.

Encrypt / Decrypt plugin là gì?

Encrypt / Decrypt plugin là một tiện ích mở rộng Chrome được phát triển bởi http://faparicio.com, và tính năng chính của nó là "This extension will encrypt and decrypt text using a rest service or local javascript.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Encrypt / Decrypt plugin

Tải xuống các tệp mở rộng Encrypt / Decrypt plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Encrypt / Decrypt plugin Encrypt / Decrypt plugin
ID cmeagmnlnffckafpnjccbhnkgfifmecg
URL Chính Thức https://chrome.google.com/webstore/detail/cmeagmnlnffckafpnjccbhnkgfifmecg
Mô tả This extension will encrypt and decrypt text using a rest service or local javascript.
Kích Thước Tệp 1.3 MB
Số Lần Cài Đặt 283
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2017-06-28
Ngày Phát Hành 2017-06-28
Nhà Phát Triển http://faparicio.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}