|
阅读:3528回复:10
今天才发现在3.6下有个扩展可以“粘贴并打开”
原来一直是复制了地址后在地址栏粘贴后再去点“转到”,感觉这一点上十分不方便,今天才发现原来有一个扩展可以实现“粘贴并打开”(Paste and Go 3)。
其实我想说的是,为什么Mozilla在开发3.6时,这么方便的一个功能不给设计上呢? |
|
|
1楼#
发布于:2011-02-07 16:25
Available in Firefox 4.
|
|
|
|
2楼#
发布于:2011-02-07 16:25
us脚本很容易实现
|
|
|
3楼#
发布于:2011-02-07 16:25
ff4自带 粘贴并搜索/转到功能了吧? 我好像没装其他东西 自己出来的
|
|
|
4楼#
发布于:2011-02-07 16:25
Mars...不如用uc脚本
|
|
|
5楼#
发布于:2011-02-07 16:25
我还是觉得maxthon里学过来的习惯最方便,右键新建标签的+号。一次点击
TU可以实现。。。额,补充一下吧,Tab Utilities,国人出品!有什么意见也可以向作者提,ithinc很勤快的 |
|
|
|
6楼#
发布于:2011-02-07 16:25
|
|
|
7楼#
发布于:2011-02-07 16:25
|
|
|
|
8楼#
发布于:2011-02-07 16:25
没发现需要这功能
|
|
|
9楼#
发布于:2011-02-07 16:25
俺一直用这个脚本~~
// ==UserScript==
// @name Paste And Go
// @namespace http://www.xuldev.org/
// @description Adds 'Paste and Go' menu to the context menu in Location bar.
// @include main
// @compatibility Firefox 3.0, 3.5, 3.6b4
// @author Gomita
// @version 1.1.20091203
// @homepage http://www.xuldev.org/misc/ucjs.php
// ==/UserScript==
// @version 1.1.20091203 Now compatible with Firefox 3.0 - 3.6b4
document.getElementById("urlbar").addEventListener("popupshowing", function(event) {
const eltID = "pasteandgo-menuitem";
var menupopup = event.originalTarget;
var refChild = menupopup.getElementsByAttribute("cmd", "cmd_paste")[0];
var canPaste = refChild.getAttribute("disabled") == "true";
var menuitem = document.getElementById(eltID);
if (!menuitem) {
var pasteAndGo = function(event) {
goDoCommand("cmd_paste");
if ("handleURLBarCommand" in window)
// [Firefox3.0]
handleURLBarCommand(event);
else
// [Firefox3.5]
gURLBar.handleCommand(event);
menupopup.hidePopup();
};
menuitem = document.createElement("menuitem");
menuitem.id = eltID;
menuitem.setAttribute("label", "\u7C98\u8D34\u5E76\u8F6C\u5230");
menuitem.setAttribute("accesskey", "G");
menuitem.addEventListener("command", pasteAndGo, false);
menupopup.insertBefore(menuitem, refChild.nextSibling);
}
menuitem.setAttribute("disabled", canPaste.toString());
}, false); |
|
|
10楼#
发布于:2011-02-07 16:25
用easy dragtogo, 选中网址向右拖就在新标签页打开了
|
|