SuperDog Authentication Extension

Send a message to a native application for authentication.

What is SuperDog Authentication Extension?

SuperDog Authentication Extension is a Chrome extension developed by SuperDog Team, and its main feature is "Send a message to a native application for authentication.".

Extension Screenshots

screenshot

Download SuperDog Authentication Extension Extension CRX File

Download SuperDog Authentication Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SuperDog Authentication Extension SuperDog Authentication Extension
ID pkoaafcbkhngggbdlpjojgadneppiajj
Official URL https://chromewebstore.google.com/detail/superdog-authentication-e/pkoaafcbkhngggbdlpjojgadneppiajj
Description Send a message to a native application for authentication.
File Size 15.21 KB
Installation Count 1,561
Current Version 2.0
Last Updated 2023-11-12
Publish Date 2016-01-04
Rating 3.67/5 Total 3 Ratings
Developer SuperDog Team
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}