我想通过Chrome扩展程序通过winscard.dll
访问智能卡。
我是Chrome扩展程序开发的新手,但是我知道解压缩模式下的Chrome扩展程序是一个由一些html页面组成的文件夹(后台,普通,optinal,覆盖,tabs.create / window.open等)和javaScript文件(内容脚本和其他文件)相互通信。这些不同的文件让我感到困惑,需要一步一步指导。
在第一步中,如何从chrome浏览器扩展中调用C ++ dll?
我已经使用js-ctypes
在Firefox插件中执行了此操作。
它与Firefox方法类似吗?
在How to call exported function in a DLL(written using C), from chrome extensions中解释的一种方法是通过向manifest.json添加以下代码来调用dll:
"plugins": [{ "path": "FRViewPortExtn.dll", "public": true },], ...
但我认为由于Chrome中的插件NPAPI已弃用,因此不再适用。
另一种方法是使用Native Messaging
引入https://developer.chrome.com/extensions/nativeMessaging。我研究了本教程页面的示例,发现它强制客户端使用bat文件(或可执行文件)。
同样如评论中所述,类似的问题也在询问中 Loading dll from Chrome extension 但是,答案只建议使用本机消息传递而不使用任何示例调用dll并使用此dll函数的示例代码
答案 0 :(得分:2)
我们必须创建两个名为app和host的文件夹。扩展名是app文件夹,而主机文件夹中提供了与可执行文件的连接。
应用程序文件夹中的main.html :
<html>
<head>
<script src='./main.js'></script>
</head>
<body>
<button id='connect-button'>Connect</button>
<input id='input-text' type='text' />
<button id='send-message-button'>Send</button>
<div id='response'></div>
</body>
</html>
应用程序文件夹中的main.js :
var port = null;
var getKeys = function(obj){
var keys = [];
for(var key in obj){
keys.push(key);
}
return keys;
}
function appendMessage(text) {
document.getElementById('response').innerHTML += "<p>" + text + "</p>";
}
function updateUiState() {
if (port) {
document.getElementById('connect-button').style.display = 'none';
document.getElementById('input-text').style.display = 'block';
document.getElementById('send-message-button').style.display = 'block';
} else {
document.getElementById('connect-button').style.display = 'block';
document.getElementById('input-text').style.display = 'none';
document.getElementById('send-message-button').style.display = 'none';
}
}
function sendNativeMessage() {
message = {"text": document.getElementById('input-text').value};
port.postMessage(message);
appendMessage("Sent message: <b>" + JSON.stringify(message) + "</b>");
}
function onNativeMessage(message) {
appendMessage("Received message: <b>" + JSON.stringify(message) + "</b>");
}
function onDisconnected() {
appendMessage("Failed to connect: " + chrome.runtime.lastError.message);
port = null;
updateUiState();
}
function connect() {
var hostName = "com.google.chrome.example.echo";
appendMessage("Connecting to native messaging host <b>" + hostName + "</b>")
port = chrome.runtime.connectNative(hostName);
port.onMessage.addListener(onNativeMessage);
port.onDisconnect.addListener(onDisconnected);
updateUiState();
}
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('connect-button').addEventListener(
'click', connect);
document.getElementById('send-message-button').addEventListener(
'click', sendNativeMessage);
updateUiState();
});
window.onbeforeunload= function (e)
{
message = {"text": "terminate"};
port.postMessage(message);
appendMessage("Sent message: <b>" + JSON.stringify(message) + "</b>");
};
应用程序文件夹中的manifest.json :
{
// Extension ID: knldjmfmopnpolahpmmgbagdohdnhkik
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzcp66xi1ctUL0HvndH7IyjNw2CM9TdOMx8XPv0GbQXFmzm3xnqwQkbRYyfNoYN+pIIY0/TRu7qYOAnb0sogEqQRU73sbSAJajPbCxxBTVFueTypQtBpN5uuV/Z/Ox4myMiRVqcfLxDaVLFkVa3f9OGMhWJclDa74eIrwqc81GJQM8TG0JvZMSwE3u8FzH+d8U+x2p/f7a4546BNpP9Ssv2Jc/kE2KV5DIQS++8rg04aHnW3TZX2aUd1Bz+c416hmqxEb4iARGXhg7iURh6KIe9+490imIcXaedhUwWRiqnuJ3Kbkzl/iOSUI2XzIOHxGnkAGmLf9tfsrhKLcwtvvqQIDAQAB",
"name": "Native Messaging Example",
"version": "1.0",
"manifest_version": 2,
"description": "Send a message to a native application.",
"app": {
"launch": {
"local_path": "main.html"
}
},
"icons": {
"128": "icon-128.png"
},
"permissions": [
"nativeMessaging"
],
"background":{
"scripts":["main.js"],
"persistent": true
}
}
主机文件夹中的com.google.chrome.example.echo-win.json文件:
{
"name": "com.google.chrome.example.echo",
"description": "Chrome Native Messaging API Example Host",
"path": "nativeMessaging.exe",
"type": "stdio",
"allowed_origins": [
"chrome-extension://bcffeaabpankpgikpifpailfcihmheno/"
]
}
主机文件夹中的install_host.bat :
REG ADD "HKCU\Software\Google\Chrome\NativeMessagingHosts\com.google.chrome.example.echo" /ve /t REG_SZ /d "%~dp0com.google.chrome.example.echo-win.json" /f
此外,nativeMessaging.exe及其所需的dll可能存在于主机文件夹中
提供这两个文件夹后,您应该在主机文件夹中运行批处理文件,以在注册表中注册json文件。 最后,您应该通过Chrome浏览器上传扩展文件夹(app文件夹)(设置 - &gt;扩展程序 - &gt;加载解压扩展程序)。
答案 1 :(得分:1)
您可以使用Security Advisory,对于示例代码,您可以查看Native Messaging以获取更多详细信息,它使用C#作为服务器端,您可以轻松地将其转换为C / C ++或只导入一个dll到C#项目。