Inline PGP

Automatically detects and decrypts PGP messages on a web page

ما هو Inline PGP؟

Inline PGP هو إضافة Chrome تم تطويرها بواسطة waifutech، والميزة الرئيسية لها هي "Automatically detects and decrypts PGP messages on a web page".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Inline PGP

قم بتنزيل ملفات الامتداد Inline PGP بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Adds ad-hoc end-to-end encryption to any web application. Use PGP with messengers, forums, comment sections - anything, that has a web interface.

Features:
Detects PGP key and message blocks on any web page and replaces them with a nice UI. 
Key management. Generate new or import existing keys.
Encrypts and decrypts text and small files.                    

معلومات أساسية عن التمديد

الاسم Inline PGP Inline PGP
ID ilbcgbbjobmcldeiebijihfbndolhbfl
عنوان URL الرسمي https://chromewebstore.google.com/detail/inline-pgp/ilbcgbbjobmcldeiebijihfbndolhbfl
الوصف Automatically detects and decrypts PGP messages on a web page
حجم الملف 3.48 MB
عدد التثبيتات 126
النسخة الحالية 0.1.2
آخر تحديث 2020-10-07
تاريخ النشر 2019-01-18
تقييم 3.00/5 مجموع تقييمات 3
المطور waifutech
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/waifutech/inline-pgp
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inline PGP",
    "version": "0.1.2",
    "description": "Automatically detects and decrypts PGP messages on a web page",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "dist\/background-build.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "dist\/content-build.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "frame.html",
        "dist\/frame-build.js",
        "dist\/frame-build.css"
    ]
}