|
阅读:1792回复:2
firefox 23.0.1能正常安装2个扩展但用不起来为什么?
XP系统,firefox 23.0.1很正常的安装了2个扩展,安装重启火狐后这2个扩展都可以正常显示包括选项设置(没有被禁用),但是点击扩展没有任何反应,也就是说这2个扩展用不起来,乃们的可以用吗?这2个扩展是“重新启动 0.5”和“ gTranslator 1.0.4 ”,点击重新启动图标火狐没有任何提示和反应不能重启,翻译扩展也是的没反应。(firefox 23.0.1用的是国际官方简中正式版的)
https://addons.mozilla.org/zh-CN/firefo ... 49/?src=ss https://addons.mozilla.org/zh-CN/firefo ... or/?src=ss |
|
|
1楼#
发布于:2013-08-23 13:58
重启按钮替代品。。这点点小功能还要装扩展。。怪不得常见到有人show附加组件三四十个扩展。。
按钮在FX橙下拉菜单里。UC.JS!!!! FX21(含)之前是有效的,后面的版本我没跟。 // ==UserScript==
// @name CompactMenu for firefox 4
// @version 1.0
// @author GOLF-AT
// ==/UserScript==
(function() {
var n, Item, Menus, mMenu, Popup, FavIDs, APane;
FavIDs = [
'restart#\u91CD\u542F', /* 重启 */
];
Popup = document.getElementById('appmenu-popup');
if (!Popup) return;
//隐藏菜单栏
Item = document.getElementById('toolbar-menubar');
if (Item.getAttribute('autohide') != 'true') {
Item.setAttribute('autohide', true);
document.persist(Item.id, 'autohide');
updateAppButtonDisplay();
}
APane = document.getElementById('appmenuPrimaryPane'
);
for(n=0; n<FavIDs.length; n++) {
var FavID = FavIDs[n];
if (FavID=='-' || FavID.substr(0,8)=='restart#') {
Item = document.createElement(FavID!='-' ?
'menuitem' : 'menuseparator');
if (FavID != '-') {
Item.setAttribute('label', FavID.substr(8
));
Item.setAttribute('oncommand', 'Applicati'
+'on.restart()');
}
}
else {
Item = document.getElementById(FavID);
if (Item) {
Item = Item.cloneNode(true);
Item.removeAttribute('key');
}
}
quitbutton = document.getElementById('appmenu-quit');
if(Item!=null) APane.insertBefore(Item,quitbutton);
}
})();--------------- 另外那个翻译。。唔。以前用小书签的,后来不让运行地址栏js后就强迫自己读英文了,挺好的。。。 |
|
|
2楼#
发布于:2013-08-23 13:58
不兼容23呗。
能安装,应该是作者写的能兼容的最大firefox版本号有关吧。就像可以让firefox强制兼容扩展,但实际能不能用就不一定了。 看两个扩展最后更新日期是11年的,下面也有评论说不兼容,所以就别抱太大期望了。 |
|