Geheim

Applies encryption on all text you enter on any website in order to make it only accessible by yourself.

Geheimคืออะไร?

Geheim เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sjoerd van der Hoorn และคุณลักษณะหลักของมันคือ "Applies encryption on all text you enter on any website in order to make it only accessible by yourself."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Geheim

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

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

                        Geheim is Dutch for secret. Use this extension to apply encryption on anything you submit online. This will prevent your information from being available if there is a data breach, and it ensures only the intended receivers are able to read your messages.

The Geheim extension is currently in PUBLIC BETA. Please report any issues via https://github.com/sjoerdvanderhoorn/ChromeGeheim/issues

This is the first ever application that helps you to protect your data seamlessly using the encryption methods you choose. If you are in a location where other secure channels may be tampered with or disabled, use Geheim to leave your encrypted messages through public channels.

This Chrome extension finds all input[type=text] and textarea fields on a website and gives the user the option to passkey protect any data that is entered before it is sent to the server by a self chosen encryption method. Fields are highlighted either in green or red, with green meaning encryption is applied while red notifies the user that no encryption is used for the data in that field. By clicking on the shield in the upper right corner, encryption can be toggled.

All encyption and decryption happens on your own machine. The developer of this extension does not have access to any of your data nor encryption methods and passwords. This extension is open source and can be contributed to or may be authored via GitHub (see website).

Using this extension, it is possible to achieve end-to-end encryption between you and any other person or group of people. The extension also works with mainstream apps like Facebook, Twitter, GitHub, YouTube, Instagram, WhatsApp, Telegram, LinkedIn, etc.

This extension by default comes with sample implementations of AES, RSA, and XOR One-time Pad encryption methods, but can be configured up to the required security level.                    

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

ชื่อ Geheim Geheim
ID mnobllclbgapmdnaaeomigkeeodpdela
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/mnobllclbgapmdnaaeomigkeeodpdela
คำอธิบาย Applies encryption on all text you enter on any website in order to make it only accessible by yourself.
ขนาดไฟล์ 86.69 KB
จำนวนการติดตั้ง 32
เวอร์ชันปัจจุบัน 2.0.2
อัปเดตครั้งล่าสุด 2018-05-16
วันที่เผยแพร่ 2018-05-16
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Sjoerd van der Hoorn
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sjoerdvanderhoorn/ChromeGeheim
URL หน้าช่วยเหลือ https://github.com/sjoerdvanderhoorn/ChromeGeheim/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Geheim",
    "version": "2.0.2",
    "description": "Applies encryption on all text you enter on any website in order to make it only accessible by yourself.",
    "icons": {
        "128": "images\/icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "popup.css",
                "page.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/safe.png",
        "images\/unsafe.png",
        "images\/hover.png",
        "images\/overlay.png",
        "page.js",
        "settings-popup.js",
        "settings-popup.html"
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_name": "Geheim",
        "default_icon": "images\/geheim.png"
    },
    "manifest_version": 2,
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self' 'unsafe-eval'; img-src 'self' data:;"
}