内联安装无法正常工作

时间:2017-01-30 17:14:22

标签: firefox firefox-addon firefox-addon-sdk mozilla firefox-developer-tools

我创建了插件。我从this site获得代码内联安装并生成散列sha1,但Mozilla写道:

  

firefox阻止安装,允许(按钮)?

如果我在我的本地电脑上做的都很好,如果在网站上这不起作用。



Private Sub ListBox1_Click()
  Workbooks(ListBox1.Value).Activate
  Unload Me
End Sub

Private Sub UserForm_Initialize()

  Dim wb As Workbook
  For Each wb In Workbooks
    ListBox1.AddItem wb.Name
  Next wb
End Sub

function install (aEvent)
{
  for (var a = aEvent.target; a.href === undefined;) a = a.parentNode;
  var params = {
    "Foo": { URL: aEvent.target.href,
             Hash: aEvent.target.getAttribute("hash"),
             toString: function () { return this.URL; }
    }
  };
  InstallTrigger.install(params);
  return false;
}




网站:http://googlewordpad.info/moz/in.php。这个插件就是例子!

0 个答案:

没有答案