「Firefox脚本」简化附加组件列表与下载列表的脚本
简化附加组件列表:
代码:
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#extensionsView richlistitem:not([selected=true]) .addon-description {
display: none !important;
}
.addonIcon {
height: 16px !important;
width: 16px !important;
max-width: 16px !important;
max-height: 16px !important;
}
.addonIcon > image{
height: 16px !important;
width: 18px !important;
}
#extensionsManager #extensionsView ... (全文...)
「Firefox脚本」Scroll with Mouse Plus -- 滚动页面无需点击GM脚本
Script Summary:
Scroll a page by simply moving the cursor up and down, without even a click!|不需要点击,只需要移动鼠标指针,你就能自由滚动页面!
Version: 1.13
From "Protector one"'s script "Scroll with the Mouse", I take the idea and do some modifications so that this script can do:
-- Free vertical scrolling without a click (original function);
-- Full simulation of scrollblock dragging (algorithm changed);
-- Works on all pages (compatibility improved, not available to textarea);
-- Allow w ... (全文...)
「Firefox脚本」Highlight Certain Text -- 高亮特定文本GM脚本
Script Summary:
Highlight pre-determined text strings with lightweight script.|高亮预先设定的关键词
Suitable for highlighting certain words across many web pages, such as keywords for a certain project or field.
To obtain minimal code and maximum efficience, users have to change keywords by editing the code, but it is very easy.
-> Improved speed;
-> Up to nine colors (edit the code for more as you prefer);
-> Support Autopagerize(http://u ... (全文...)
「Firefox脚本」Go to bottom and go to top floating links
Script Summary:
Go to bottom and go to top floating links.
Version: 2.32
This is just a draft to substitute partly the RichScrollbar extension for Firefox (https://addons.mozilla.org/en-US/firefox/addon/....
Sorry, but I'm not a programmer, at least for now :).
Please, let me know the fixes and improvements made to this script.
Known bugs:
> In multiframe pages.
> When there is more than one opened window of the Firefox (because of window.blur()).
(全文...)
「Firefox脚本」word highlight Modified -- 强大的关键词高亮修改版GM脚本
Script Summary:
A Modified version of "word highlishg" script, with improved look and usability.|这是“word highlight”脚本的修改版,改进了外观样式和可用性细节。
Version: 1.0.9
"word highligh" is a script intended to automatically highlight Google search keywords in Google result pages and subsequent pages, as well as to manually add keywords for highlight in any page with "Ctrl-/" shortcut. It can also draw a map of highlighted keywords in the page and let you quickly navigate through the keywords on the map or ... (全文...)
「Firefox脚本」Tab Clicking Options脚本
可以自定义标签页或者标签栏上左键、中键、右键、双击以及各种组合键点击的对应动作。
about:config参数设置:
userChromeJS.openNewTabLite.leftClickTab
userChromeJS.openNewTabLite.middleClickTab
userChromeJS.openNewTabLite.rightClickTab
userChromeJS.openNewTabLite.dblClickTab
userChromeJS.openNewTabLite.ctrlClickTab
userChromeJS.openNewTabLite.alftClickTab
userChromeJS.openNewTabLite.shiftClickTab
userChromeJS.openNewTabLite.middleClickTabBar
userChromeJS.openNewTabLite.rightClickTabBar
userC ... (全文...)
「Firefox脚本」撤销关闭标签页按钮
完全复制历史菜单的最近关闭标签页列表功能,可以一次性全部恢复,另外按钮增加了disabled状态。本脚本功能已包含在openNewTabLite脚本中。
看不到按钮的,请确保你的主页按钮在工具栏上,或者修改脚本里的'home-button'为你工具栏上任一按钮的id。
代码:
/* :::: 撤销关闭标签页按钮 :::: */
(function() {
var refNode = document.getElementById('home-button');
if (refNode) {
var undoCloseTabButton = refNode.parentNode.insertBefore(document.c ... (全文...)
「Firefox脚本」书签按钮改菜单,中键打开书签的uc.js脚本
修改原工具栏书签按钮 改成单击出现下拉书签菜单 并可中间连续打开书签项
firefox默认会在type为menu的按钮上显示dropmarker,试试在userchrome.css里加入:
#bookmarks-button dropmarker {display: none !important;}

(全文...)
「Firefox脚本」Multi-Lang Lookup Bar -- 多语种词汇翻译Greasemonkey脚本
Multi-Lang Lookup Bar 划线取词脚本,它通过四个站点翻译词句。
其中dict.cn使用查询接口,使查词更迅速,并且和iciba.com一样提供单词发音支持;
babylon.com提供广泛的语言支持,你可以将各种语言,翻译成你想要的目标语言,并且提供百科全书式的解释;
translate.google.com支持长句翻译。
Script Summary:
Translate and search words. Version:4.5.0Beta3
4.5.0Beta3:
... (全文...)
「Firefox脚本」External Application Buttons 脚本版
External Application Buttons是Firefox的一个外部工具脚本,对于添加外部工具非常方便。
可显示为按钮或菜单,支持形如"\Programs\U8.exe", "..\Programs\U8.exe"等的相对路径,可打开程序、文档以及文件夹,可插入分隔符。
代码:
var gExternalApplications = {
type: 'button', //'menu' or 'button'
insertafter: 'menubar-items',
apps: [
{name: 'Notepad', path: '/WINDOWS/system32/notepad.exe'},
{name: 'Calculator' ... (全文...)
本脚本目前实现了以下功能:
1。地址栏、搜索栏、书签菜单、书签工具栏、书签侧边栏、历史菜单、历史侧边栏、主页按钮:左键在新标签页打开,中键在新标签页后台打开,Ctrl+左键在当前标签页打开(Bookmarklet总在当前标签页打开);
2。地址栏回车键在新标签页打开,Alt+回车键在当前标签页打开(搜索栏设置browser.search.openintab为true可实现回车键在新标签打开,Alt+回车键在当前标签页打开);
3。新建标签页时利用已有空白标签页,自动关闭多余的新建空白标签页;
4。在当前标签页的右 ... (全文...)