|
阅读:2877回复:9
请问有无类似接近的扩展,可以增加一个悬浮窗或者工具条。。。。。
有这几个功能“按钮”在这个区域的,
如“关闭当前标签页” ”新建标签页“ ”上一个标签页“ ”下一个标签页“ 在写报告,因为这些资料网页的设计是垂直纵深很多层,而且要开很多页面取数据ctrl+c,v,每天鼠标游走里程6公里,比打网游还折腾。。。。 如果在web页面集中有这几个按钮就好了,自定义脚本添加功能的也好啊,谢谢大家介绍了! |
|
|
1楼#
发布于:2014-09-03 14:31
这些都可以直接用键盘快捷键吧
|
|
|
2楼#
发布于:2014-09-03 14:34
|
|
|
3楼#
发布于:2014-09-03 14:34
我是左撇子,右手要拿着笔做笔记和键盘上来回切换,回到问题上,请问有这种扩展吗?
|
|
|
4楼#
发布于:2014-09-03 14:52
pppguest3962:我是左撇子,右手要拿着笔做笔记和键盘上来回切换,回到问题上,请问有这种扩展吗?回到原帖 FireGestures 1.8.7 https://addons.mozilla.org/zh-CN/firefox/addon/firegestures/?src=userprofile 你要的 如“关闭当前标签页” ”新建标签页“ ”上一个标签页“ ”下一个标签页“这个扩展用手势都有在映射下面的标签页里就看到了,比去点什么什么功能“按钮”都方便呀,左手只管划滑鼠即可(和你每天鼠标游走里程6公里有区别的),所要的结果左手的动作还可以根据自己的习惯来定制改变滑鼠手势。(当然乃用的是左撇子专用的滑鼠吧虽然右手要拿着笔做笔记) 当然该扩展自定义用户脚本添加功能也是有的。 |
|
|
5楼#
发布于:2014-09-03 15:51
我用猴子搞了个悬浮close。或许值得一试。右边的close框。
图片:BaiduShurufa_2014-9-3_15-46-9.png ![]() // ==UserScript==
// @name Close window
// @namespace http://userscripts.org/users/23652
// @description Creates a box in the exact center of the page and moves itself when the browser is resized
// @include http://*
// @include https://*
// @include file://*
// @copyright JoeSimmons
// @version 1.0.3
// @license Creative Commons Attribution-Noncommercial 3.0 United States License
// ==/UserScript==
// alignCenter by JoeSimmons
// Instructions: Supply an id string or node element as a first argument
function alignCenter(e) {
var node = (typeof e == 'string') ? document.getElementById(e) : ((typeof e == 'object') ? e : false);
if (!window || !node || !node.style) {
return ;
}
var style = node.style,
beforeDisplay = style.display,
beforeOpacity = style.opacity;
if (style.display == 'none') style.opacity = '0';
if (style.display != '') style.display = '';
style.top = Math.floor((window.innerHeight / 2) - (node.offsetHeight / 2)) + 'px';
style.left = Math.floor((window.innerWidth / 2) - (node.offsetWidth / 2)) + 400 + 'px';
style.display = beforeDisplay;
style.opacity = beforeOpacity;
}
// Create box with certain style
var box = document.createElement('div');
box.id = 'center_div';
box.textContent = 'close.';
box.setAttribute('style', 'position:fixed; top:' + window.innerHeight / 2 + 'px; left:' + window.innerWidth / 2 + 'px; border:2px solid #0083C1; background:#D7F2FF; color:#000; padding:20px; -moz-border-radius:4px; -moz-appearance:none;');
box.setAttribute('onclick', 'window.close()');
//box.setAttribute('onmousemove','window.close()');
// Add it to page
document.body.appendChild(box);
// Center it right after it's added
alignCenter('center_div');
// Center it when page resizes
window.addEventListener('resize', function (e) {
alignCenter('center_div')
}, false);
//alert(window.getSelection()); |
|
|
6楼#
发布于:2014-09-03 16:21
|
|
|
7楼#
发布于:2014-09-03 17:28
我记得有一个可以添加自定义按钮的扩展,你说的这些都可以用脚本实现,用那个扩展应该就可以了
另外,如果真的对此类操作需求很大,建议购买可自定义键的鼠标 我现在g500虽然只有几个可定义键,但是用滚轮左右晃切换标签页,侧键实现前进后退,已经很明显提高浏览效率了 |
|
|
|
8楼#
发布于:2014-09-04 09:36
|
|
|
|
9楼#
发布于:2014-09-04 16:45
|
|
|
