从greasemonkey启动本地可执行文件



下面是我正在尝试的代码(加上一些变化),有一个对话框要求我的许可,但仍然错误的

错误:获取属性XPCComponents.classes的权限被拒绝

unsafeWindow.netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect'); 
var file = unsafeWindow.Components.classes["@mozilla.org/file/local;1"]
    .createInstance(Components.interfaces.nsILocalFile);
file.initWithPath("d:\test.bat");
var process = unsafeWindow.Components.classes["@mozilla.org/process/util;1"]
    .createInstance(Components.interfaces.nsIProcess);
process.init(file);
var args = ["argument1", "argument2"];
process.run(false, args, args.length);

这是不可能的吗?

@Jano答案是正确的,但是您仍然可以使用自定义协议处理程序(如myprotocol://parameters)调用.bat文件。这里也解释了:如何通过HTML/javascript在Chrome中运行本地程序(exe)

将这些键添加到您的注册表:

HKEY_CLASSES_ROOT
   myprotocol
      (Default) = "URL:Test Protocol"
      URL Protocol = ""
      shell
         open
            command
               (Default) = "d:test.bat" "%1"

在。bat中捕获参数:

set param=%1
echo Parameter is "%param:~13,100%

式中:~13,100裁剪参数(myprotocol://)的前13个字符

然后在您的脚本中使用自定义协议URL在window.location, $.ajax或分配给<a>href

你不能。

相关内容

  • 没有找到相关文章

最新更新