billude
小狐狸
小狐狸
  • UID26023
  • 注册日期2008-08-28
  • 最后登录2008-09-04
  • 发帖数4
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
阅读:3030回复:6

(求助!!)关于 ff3 中ie tab 的问题

楼主#
更多 发布于:2008-08-28 15:51
在ff3中 使用ie tab 1.5.20080823

登陆kankan.xunlei.com
ff 3系统崩溃  

提示dep保护 ,结果关闭保护还是崩溃

难道是ie tab这个版本不稳定?


Add-ons: filtersetg@updater:0.3.1.3,{8b86149f-01fb-4842-9dd8-4d7eb02fd055}:0.19.1,{19503e42-ca3c-4c27-b1e2-9cdb2170ee34}:1.1,{3CE993BF-A3D9-4fd2-B3B6-768CBBC337F8}:0.9.6,{3112ca9c-de6d-4884-a869-9855de68056c}:3.1.20080730W,{77b819fa-95ad-4f2c-ac7c-486b356188a9}:1.5.20080823,{CAFEEFAC-0016-0000-0001-ABCDEFFEDCBA}:6.0.01,{1650a312-02bc-40ee-977e-83f158701739}:26.6,{8620c15f-30dc-4dba-a131-7c5d20cf4a29}:2.0.2,{1280606b-2510-4fe0-97ef-9b5a22eafe30}:0.6.1.13,{3e9bb2a7-62ca-4efa-a4e6-f6f6168a652d}:0.8.08r14b0251,{1B33E42F-EF14-4cd3-B6DC-174571C4349C}:3.5,{972ce4c6-7e08-4474-a285-3208198ce6fd}:3.0.1
BuildID: 2008070208
CrashTime: 1219910229
Email: b@*.com
InstallTime: 1219888103
ProductName: Firefox
SecondsSinceLastCrash: 2006
StartupTime: 1219910198
Theme: classic/1.0
URL: chrome://ietab/content/reloaded.html?url=http://kankan.xunlei.com/?id=55
UserID: 0959398c-a996-4964-bad8-471a1a278387
Vendor: Mozilla
Version: 3.0.1
chicksong
火狐狸
火狐狸
  • UID20617
  • 注册日期2007-09-23
  • 最后登录2023-08-03
  • 发帖数268
  • 经验13枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
  • 社区居民
1楼#
发布于:2008-08-28 15:51
现在我已经开始在菜单里加一条命令的方式来直接调用IE了,省一个扩展也好。呵呵,感觉页面不行了就右键,VIEWINIE
Firefox是头小狐狸,我养的……
billude
小狐狸
小狐狸
  • UID26023
  • 注册日期2008-08-28
  • 最后登录2008-09-04
  • 发帖数4
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
2楼#
发布于:2008-08-28 15:51
详细步骤呢,希望赐教 谢谢
eilern
狐狸大王
狐狸大王
  • UID22371
  • 注册日期2007-12-20
  • 最后登录2017-10-13
  • 发帖数468
  • 经验10枚
  • 威望1点
  • 贡献值20点
  • 好评度13点
  • 社区居民
3楼#
发布于:2008-08-28 15:51
ie view lite 挺好的。
chicksong
火狐狸
火狐狸
  • UID20617
  • 注册日期2007-09-23
  • 最后登录2023-08-03
  • 发帖数268
  • 经验13枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
  • 社区居民
4楼#
发布于:2008-08-28 15:51
装userChrome.js扩展后,在userChrome.js中加入
之后鼠标右键就会出来一个launchIE
/* :::::::: LaunchIE (cf. IE View) ::::::::::::::: */

var LaunchIE = {
mSchemes: ["file", "ftp", "http", "https"],

init: function()
{
this.mItem = document.createElement("menuitem");
this.mItem.setAttribute("label", "LaunchIE");
this.mItem.setAttribute("accesskey", "u");

document.getElementById("contentAreaContextMenu").addEventListener("popupshowing", function() { LaunchIE.onPopupShowing(this); }, false);
},

onPopupShowing: function(aPopup)
{
aPopup.insertBefore(this.mItem, document.getElementById("context-sep-" + ((gContextMenu.onLink)?"open":"stop")));
this.mItem.setAttribute("oncommand", "LaunchIE.launch(" + ((gContextMenu.onLink)?"gContextMenu.linkURI":"gBrowser.currentURI") + ");");
this.mItem.hidden = !gContextMenu.onLink && (gContextMenu.isTextSelected || gContextMenu.onImage || gContextMenu.onTextInput);
this.mItem.setAttribute("disabled", this.mItem.hidden || !this.isSupported((gContextMenu.onLink)?gContextMenu.linkURI:gBrowser.currentURI));
},

launch: function(aURI, aApp)
{
if (!this.isSupported(aURI))
{
throw new Error("LaunchIE: unsupported URI scheme '" + aURI.scheme + "'!");
}

var iexplore = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
try
{
var regkey = Components.classes["@mozilla.org/windows-registry-key;1"].createInstance(Components.interfaces.nsIWindowsRegKey);
regkey.open(Components.interfaces.nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\" + (aApp || "IEXPLORE.EXE"), Components.interfaces.nsIWindowsRegKey.ACCESS_READ);
iexplore.initWithPath(regkey.readStringValue(""));
regkey.close();
}
catch (ex)
{
iexplore.initWithPath((Components.classes["@mozilla.org/process/environment;1"].getService(Components.interfaces.nsIEnvironment).get("PROGRAMFILES") || "C:\\Program Files") + "\\Internet Explorer\\iexplore.exe");
}

var process = Components.classes["@mozilla.org/process/util;1"].createInstance(Components.interfaces.nsIProcess);
process.init(iexplore);
process.run(false, [aURI.spec], 1);
},

isSupported: function(aURI)
{
return this.mSchemes.indexOf(aURI.scheme) > -1;
}
};

LaunchIE.init();
Firefox是头小狐狸,我养的……
billude
小狐狸
小狐狸
  • UID26023
  • 注册日期2008-08-28
  • 最后登录2008-09-04
  • 发帖数4
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
5楼#
发布于:2008-08-28 15:51
谢谢 非常感谢
可是我的情况是 不用ie tab的时候 kankan显示一半
用ie tab的时候久崩溃  所以 我很是迷糊
linwen778
禁止发言
禁止发言
  • UID9969
  • 注册日期2005-11-21
  • 最后登录2021-06-23
  • 发帖数276
  • 经验-2428枚
  • 威望0点
  • 贡献值-4876点
  • 好评度-2464点
6楼#
发布于:2008-08-28 15:51
用户被禁言,该主题自动屏蔽!
游客

返回顶部