Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

webutation extentsion will not appear in toolbar

  • 4 回覆
  • 3 有這個問題
  • 19 次檢視
  • 最近回覆由 FredMcD

more options

installed webutation extentsion....will not appear in toolbar.....

installed webutation extentsion....will not appear in toolbar.....

被選擇的解決方法

I've checked the Webutation extension and this extension is broken because it uses a function (quote() to quote a string) that is no longer supported in Firefox.

This is not a bug in Firefox, but a bug in the extension and thus needs to be fixed by the creator of the extension. You can point the creator of the extension to this thread if you like.

I don't know about the other extensions, but they might be broken as well and you would have to check the Browser Console (Firefox/Tools > Web Developer) for error messages.

從原來的回覆中察看解決方案 👍 0

所有回覆 (4)

more options

There is a problem with this extension that needs to be addressed by its author via an update.

The Browser Console (Firefox/Tools > Web Developer) shows an error message: href.quote() is not a function

The extension uses the quote() function to enclose a string in quotes.

Obsolete since Gecko 37 (Firefox 37 / Thunderbird 37 / SeaMonkey 2.34) This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

The quote() function is used in overlay.js and needs to be replaced:

var s = document.createProcessingInstruction('xml-stylesheet', 'href=' + href.quote())
var s = document.createProcessingInstruction('xml-stylesheet', 'href="' + href+'"');

Editing this file make the signing invalid, so you need to remove the META-INF folder. This make the button appear fore me.

more options

I created a bug report about this, and others;

Please do not comment in bug reports. Bug 1155413 - Many icons missing from Add-on Customize Manager https://bugzilla.mozilla.org/show_bug.cgi?id=1155413

I have sent messages to the (so-called) support e-mail, but never heard back.

more options

選擇的解決方法

I've checked the Webutation extension and this extension is broken because it uses a function (quote() to quote a string) that is no longer supported in Firefox.

This is not a bug in Firefox, but a bug in the extension and thus needs to be fixed by the creator of the extension. You can point the creator of the extension to this thread if you like.

I don't know about the other extensions, but they might be broken as well and you would have to check the Browser Console (Firefox/Tools > Web Developer) for error messages.

由 cor-el 於 修改

more options

SUCCESS ! ! SUCCESS ! ! SUCCESS ! !

Thank you, cor-el, Oh Mighty Mozillion.

I downloaded a new Webutation add-on without installing it. I opened the XPI in WinZip to work on it. I removed the META-INF folder as you said above. I then edited the content/Overlay.js file. I replaced ('xml-stylesheet', 'href=' + href.quote()) with ('xml-stylesheet', 'href="' + href+'"');

It looks like Webutation is working properly.

Many, many thanks, Oh Mighty One.