|
阅读:7769回复:18
IE-tab 不继续开发了?
今天去找扩展……看到ie-tab的作者说不继续开发了...是真的么?
那以后……ie内核转化用哪个好? coral ie-tab好像也停了...真的么 |
|
|
1楼#
发布于:2010-01-22 14:01
不开发了,不支持了,你官方倒是提供点方便的切换到IE的方法呀?总不能总是等待高手的代码,天下没有那么多geek呀,firefox也是要市场的吧?
咳。 |
|
|
|
2楼#
发布于:2010-01-22 14:01
|
|
|
|
3楼#
发布于:2010-01-22 14:01
哪个ie的扩展好用点?
|
|
|
4楼#
发布于:2010-01-22 14:01
just4fun:coral又没停止开发,只是AMO不让放新版了而已。可以隔段时间到他们自己的主页看下回到原帖 谢谢了,确实还在开发... 只是火狐的自动更新不支持了 顺便附带一下 CoralIEtab 的更新主页,方便需要的人 http://coralietab.mozdev.org/installation.html 点击 Installation Lastest version: v1.69.20091202 自动更新的话只能到1.63版本... |
|
|
5楼#
发布于:2010-01-22 14:01
coral又没停止开发,只是AMO不让放新版了而已。可以隔段时间到他们自己的主页看下
|
|
|
6楼#
发布于:2010-01-22 14:01
谢谢了,正在细细研究....代码看的好晕
我用火狐...也要被折腾了 |
|
|
7楼#
发布于:2010-01-22 14:01
123456852: 被你搞糊涂了,直接发上来; 1.firegesture调用方法:打开firegesture选项-映射,点击获取脚本,弹出这个网址:http://www.xuldev.org/firegestures/getscripts.php;然后照下面的图做;
最后设置一下对应的手势就可以了; 2.怪我没说清楚,隔壁论坛指的是:http://board.mozest.com/; 我把代码贴上来,使用方法参照高手写的教程:http://board.mozest.com/thread-20276-1-1 以下是我用的代码,默认是ie,需要其它浏览器自己编辑路径就可以了,保存成*.uc.xul的文件就行了; <overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<popup id="contentAreaContextMenu">
<menu id="context-openlinkwith"
label="Open Link With"
accesskey="O"
insertbefore="context-sep-open">
<menupopup>
<menuitem id="context-openlinkiniexplorer"
label="Internet Explorer"
accesskey="I"
oncommand="openApplicationWithURI('C:\\\\Program Files\\\\Internet Explorer\\\\IEXPLORE.EXE', gContextMenu.linkURL);"
insertbefore="context-sep-open"/>
</menupopup>
</menu>
<menu id="context-openpagewith"
label="Open Page With"
accesskey="O"
insertbefore="context-sep-stop">
<menupopup>
<menuitem id="context-openpageiniexplorer"
label="Internet Explorer"
accesskey="I"
oncommand="openApplicationWithURI('C:\\\\Program Files\\\\Internet Explorer\\\\IEXPLORE.EXE', gBrowser.currentURI.spec);"
insertbefore="context-sep-open"/>
</menupopup>
</menu>
<menu id="tab-openpagewith"
label="Open Page With"
accesskey="O"
insertbefore="context-sep-stop">
<menupopup>
<menuitem id="tab-openpageiniexplorer"
label="Internet Explorer"
accesskey="I"
oncommand="openApplicationWithURI('C:\\\\Program Files\\\\Internet Explorer\\\\IEXPLORE.EXE', gBrowser.mContextTab.linkedBrowser.currentURI.spec);"
insertbefore="context-sep-open"/>
</menupopup>
</menu>
</popup>
<script type="application/x-javascript">
<![CDATA[
function openApplicationWithURI(appPath, url) {
var app = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile);
app.initWithPath(appPath);
if (!app.exists())
return;
var shell = Cc["@mozilla.org/browser/shell-service;1"].getService(Ci.nsIShellService);
shell.openApplicationWithURI(app, url);
}
(function() {
setTimeout('document.getAnonymousElementByAttribute(gBrowser, "anonid", "tabContextMenu").insertBefore(document.getElementById("tab-openpagewith"), document.getElementById("context_openTabInWindow").nextSibling);', 0);
document.getElementById("contentAreaContextMenu").addEventListener("popupshowing", function(e) {
document.getElementById("context-openpagewith").hidden = gContextMenu.onLink || gContextMenu.onImage || gContextMenu.onTextInput || gContextMenu.isContentSelected;
document.getElementById("context-openlinkwith").hidden = !gContextMenu.onLink;
}, false);
})();
]]>
</script>
</overlay> |
|
|
8楼#
发布于:2010-01-22 14:01
|
|
|
9楼#
发布于:2010-01-22 14:01
|
|
|
10楼#
发布于:2010-01-22 14:01
据我所知 coral IE tab 还没停止开发。。。。
|
|
|
|
11楼#
发布于:2010-01-22 14:01
直接用IE打开吧,加个右键
|
|
|
|
12楼#
发布于:2010-01-22 14:01
你那什么头像啊= =
也是足控啊 |
|
|
13楼#
发布于:2010-01-22 14:01
对我来说这个消息太好了。
|
|
|
|
14楼#
发布于:2010-01-22 14:01
firegesture鼠标手势扩展,支持自定义手势;
那个脚本不是gm脚本,是userchrome.js脚本,要userchrome.js扩展调用才能用。 |
|
上一页
下一页
