Send a message to a native application for authentication.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
]
}