SuperDog Authentication Extension

Send a message to a native application for authentication.

Apa itu SuperDog Authentication Extension?

SuperDog Authentication Extension adalah ekstensi Chrome yang dikembangkan oleh SuperDog Team, dan fitur utamanya adalah "Send a message to a native application for authentication.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi SuperDog Authentication Extension

Unduh file ekstensi SuperDog Authentication Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        This extension exchange data with a native messaging host to help users on authentication to certain website using a SuperDog token. SuperDog token is a USB dongle which can be used for IP protection and website authentication.                    

Informasi Dasar Ekstensi

Nama SuperDog Authentication Extension SuperDog Authentication Extension
ID pkoaafcbkhngggbdlpjojgadneppiajj
URL Resmi https://chromewebstore.google.com/detail/superdog-authentication-e/pkoaafcbkhngggbdlpjojgadneppiajj
Deskripsi Send a message to a native application for authentication.
Ukuran File 15.21 KB
Jumlah Instalasi 1,561
Versi Saat Ini 2.0
Terakhir Diperbarui 2023-11-12
Tanggal Publikasi 2016-01-04
Penilaian 3.67/5 Total 3 Penilaian
Pengembang SuperDog Team
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SuperDog Authentication Extension",
    "version": "2.0",
    "manifest_version": 3,
    "description": "Send a message to a native application for authentication.",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "nativeMessaging"
    ]
}