Encrypt / Decrypt plugin

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

Encrypt / Decrypt pluginคืออะไร?

Encrypt / Decrypt plugin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://faparicio.com และคุณลักษณะหลักของมันคือ "This extension will encrypt and decrypt text using a rest service or local javascript."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Encrypt / Decrypt plugin

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Encrypt / Decrypt plugin Encrypt / Decrypt plugin
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"
    }
}