Local PGP - Browser Encryption and Decryption

Easy to use PGP encryption and decryption.

Local PGP - Browser Encryption and Decryptionคืออะไร?

Local PGP - Browser Encryption and Decryption เป็นส่วนขยายของ Chrome ที่พัฒนาโดย x0th และคุณลักษณะหลักของมันคือ "Easy to use PGP encryption and decryption."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Local PGP - Browser Encryption and Decryption

ดาวน์โหลดไฟล์ส่วนขยาย Local PGP - Browser Encryption and Decryption ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Local PGP Browser support

Website: https://github.com/x0th/Local-PGP
The extension uses OpenPGP.js (https://openpgpjs.org/) for everything associated with cryptography.
Note: The extension's security is limited by it being local and browser-operated. Always keep a backup of stored keys somewhere secure.


Features

The extension allows you to encrypt and decrypt messages with PGP in-browser as opposed to by using a mailing client.
You can store your PGP keys directly in-browser for the purpose of decryption.
If you do not have PGP keys, you can generate them in the extension. Remember to also store them elsewhere for backup.
You can keep an 'address book' of known public keys for encryption purposes.
Want to decrypt a message fast? After selecting an encrypted PGP message, right-click anywhere on the page and choose Decrypt to decrypt instantly! Feature customizable in settings.
Don't like such information being stored in a browser? You can tweak storage settings in the extension options.
Want to export your key databases? You can download them in a comfortable .json format.


Navigation

Want to store/generate your PGP keys?
    Navigate to My Keys -> Enter Existing or My Keys -> Generate new accordingly.

Want to view/delete your credentials?
    Once your credentials are stored, you can navigate to My Keys -> Show my info or My Keys -> Delete my info.

Ready to decrypt?
    After you have entered/generated your PGP keys, you can decrypt any message that was encrypted using your public key in the Decrypt tab.

Want to encrypt a message?
    Just store a public key that was given to you by going to Encrypt -> Add. After you have stored a key that way, you are ready to encrypt! Just choose a key from the list in the Encrypt tab. You can also view your 'address book' in the View Stored Keys found in the Encrypt -> Add tab.

Searching for options?
     You can find them in *My Keys -> Options*. There, you can enable/disable storage of your PGP keys and 'adress book' during every session.                    

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

ชื่อ Local PGP - Browser Encryption and Decryption Local PGP - Browser Encryption and Decryption
ID hlcbdlnnolgaenfoddgdlmgjflcapbba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/local-pgp-browser-encrypt/hlcbdlnnolgaenfoddgdlmgjflcapbba
คำอธิบาย Easy to use PGP encryption and decryption.
ขนาดไฟล์ 193 KB
จำนวนการติดตั้ง 704
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-07-09
วันที่เผยแพร่ 2020-07-04
คะแนน 4.17/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา x0th
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/x0th/Local-PGP
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Local PGP - Browser Encryption and Decryption",
    "version": "1.1",
    "description": "Easy to use PGP encryption and decryption.",
    "permissions": [
        "storage",
        "downloads",
        "contextMenus",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/icon_16.png",
            "32": "icons\/icon_32.png",
            "48": "icons\/icon_48.png",
            "128": "icons\/icon_128.png"
        }
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "manifest_version": 2
}