我正在尝试从 chrome 扩展程序调用 exe。我用谷歌搜索并知道它只能来自 NPAPI 插件。我也觉得它只能用 c /c++ 编写(我不知道。)。任何人都可以帮助我处理 NPAPI 插件。
如果可以使用 c# 或 vb.net 在 Visual Studio 中构建。
清单.Json 文件
{
"name": "My First Extension",
"version": "1.0",
"manifest_version": 2,
"description": "The first extension that I made.",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "MyPage.html"
},
"permissions": [
"MyPage.html"
]
}
MyPage.html 文件
<html>
<head>
<script src="my.js"></script>
<script language="JavaScript" type="text/javascript" > </script>
</head>
<body>
</body>
</html>
我的.js 文件
window.onload = function()
{
RunExe();
};
function RunExe()
{
MyObject = new ActiveXObject( "WScript.Shell" )
MyObject.run ("file:///C:/Users/manoj.gangwar/Desktop/FormEx_Sample_Project/TestProject/bin/Debug/TestForm.exe");
window.close();
}
感谢和问候马诺伊