2014年10月15日 | 标签:

一、请教keyconfig的一个用法

可否知道如何使用keyconfig复制鼠标所指图片的地址。

想法是,当鼠标放到一个图片上的时候,按一个键盘快捷键,复制图片的地址。

http://i.lvshiminglu.com/blog/1019.html 看到你的博客

二、问题回答

1、我现在用的方法

javascript:outText=”;for(i=0;i<document.images.length;i++){if(outText.indexOf(document.images[i].src)==-1){outText+='<tr><td><img src=’+document.images[i].src+’></td><td>’+document.images[i].height+'</td><td>’+document.images[i].width+'</td><td>’+document.images[i].src+'</td></tr>’}};if(outText!=”){imgWindow=window.open(”,’imgWin’,’width=800,height=600′);imgWindow.document.write (‘<table border=1 cellpadding=10><tr><th>Image</th><th>Height</th><th>Width</th><th>URL</th></tr>’+outText+'</table>’);imgWindow.document.close()}else{alert(‘No images!’)}

把上边的链接保存为ff书签,并把书签关键词命名为:img

然后在keyconfig中新建一个key,填入如下代码:

firefox 25 之前的firefox版本使用代码:if(window.loadURI) loadURI(getShortcutOrURI(‘img’,{}));

firefox 25 之后的firefox版本使用代码:loadURI(PlacesUtils.getURLAndPostDataForKeyword(“img”)[0])

再把keyconfig打开的关键词指定为 i

这样在网页上点i就可以列出所有页面上的图片,右边有图片的真实地址,复制即可。

2、你想实现的目的达不到

我用:MenuManipulator 提取出了复制图片地址的代码:

gContextMenu.copyMediaLocation();

加到keyconfig中实现不了你说的功能,不知道为什么。

MenuManipulator官网:

http://forums.mozillazine.org/viewtopic.php?t=272717

http://mozilla.dorando.at/

3、想实现只能

图片上右键-复制图片地址 阅读全文…

2014年9月18日 | 标签:

Mutifox:同时登录不同账号,论坛马甲

https://addons.mozilla.org/zh-cn/firefox/addon/multifox/

poster: 用来Post和Get数据

https://addons.mozilla.org/zh-cn/firefox/addon/poster/

ColorZilla:网页颜色提取

https://addons.mozilla.org/zh-cn/firefox/addon/colorzilla/

Scrapbook:网页信息收集

https://addons.mozilla.org/zh-cn/firefox/addon/scrapbook/

fireie:智能+自定义规则自动切换到IE,比ie tab好用多

https://addons.mozilla.org/Zh-CN/firefox/addon/fire-ie/

fireCaptor:截取完整的网页图片

https://addons.mozilla.org/zh-cn/firefox/addon/firecaptor/

Update Scanner:不提供RSS,而你又需要关注其更新的网站

https://addons.mozilla.org/zh-cn/firefox/addon/update-scanner/ 阅读全文…

2014年9月16日 | 标签:

1、userscripts.org:8080无法使用的备用办法

http://userscripts-mirror.org/

使用这个镜像站点

2、Greasemonkey脚本推荐:DBank Linker

http://userscripts-mirror.org/scripts/show/116879.html

DBank Linker是针对DBank网盘(华为网盘,数据银行)下载页的一个用户脚本

其功能包括:

DBank网盘下载链接对于未登陆用户隐藏,需注册登录下载,该脚本能让用户无需登录即可下载,并直接显示下载链接

去除页面上的各种广告

显示每个单个文件的下载点击次数

动态显示选中文件的合计大小和个数

去除“资源加载中,请稍候”的提示

登录用户浏览各个网盘页面时自动签到(右上角会显示“DBank Linker签到成功!”)

3、百度网盘、华为网盘站内搜索推荐

http://pan.btbook.net/

很好用 阅读全文…

一、Adblock Plus

1、这个不多说了,firefox下经典的广告过滤扩展

https://addons.mozilla.org/zh-cn/firefox/addon/adblock-plus/?src=cb-dl-users

2、ctrl+shift+f 打开 Adblock Plus 管理选项

Ad Blocking Rules 中添加两条内容:*.js *.swf 这样就可以过滤掉所有的js 和flash

Exception Rules 中添加例外的网址,意思是告诉Adblock Plus不过滤这些网站上的广告以及js swf

这样添加:@@http://*.lvshiminglu.com 网址前边两个@@ 用 *号代替这个域名下的所有二级子域名

3、Firefox下用Adblock Plus扩展代替NoScript

http://i.lvshiminglu.com/blog/100.html

二、Add to Search Bar扩展

1、添加网站搜索框到firefox右上角

https://addons.mozilla.org/zh-cn/firefox/addon/add-to-search-bar/

2、添加方法

鼠标右键点击网页上的搜索框,然后点击Add to Search Bar,就可以把这个网站添加到firefox右上角搜索框

3、站内搜索找特定资料

以后切换到相应网站的搜索框,就可以在这个网站站内搜索

添加找资料常用到的特定网站搜索框到firefox右上角,提醒自己之后找相关资源到相关网站

三、强制保存密码

1、rememberpass

https://addons.mozilla.org/en-US/firefox/addon/rememberpass/

2、firefox 29新功能

about:config 中 开启 signon.overrideAutocomplete 后强制保存密码

有些网站还是不行,后来用到这个扩展效果不错

四、S3.Menu Wizard扩展

1、整理firefox菜单

https://addons.mozilla.org/zh-CN/firefox/addon/s3menu-wizard/

2、比menu editor功能多

可以自定义菜单显示名称

3、firefox 29下两个右键小功能不错

View Selection Source (选中网页上的一段内容后查看这段内容的源码)

view background image (查看网页上的背景图片)

五、keyconfig快捷键扩展(键盘控强烈推荐使用)

1、详见之前的文章介绍

http://i.lvshiminglu.com/blog/1019.html

六、userChrome.js 扩展(替换firefox扩展的脚本利器)

1、firefox下用userChrome.js扩展代替鼠标手势超级拖拽及IE Tab

http://i.lvshiminglu.com/blog/159.html

2、firefox扩展推荐:userChromeJS

http://i.lvshiminglu.com/blog/1018.html

七、简单拖拽(结合鼠标手势使用效果更佳)

1、选中网页文字、链接、图片实现搜索、打开等功能

https://addons.mozilla.org/en-US/firefox/addon/simpledrag/?src=userprofile

八、Greasemonkey扩展(和userChrome.js比较像的脚本工具)

1、脚本库

http://userscripts.org:8080/

2、我使用的Greasemonkey脚本推荐

http://i.lvshiminglu.com/blog/1059.html 阅读全文…

2014年6月3日 | 标签: ,

1、禁止google的搜索结果重定向脚本(stopGoogleRedirection)

http://userscripts.org:8080/scripts/show/186798

2、方便多个搜索引擎之间跳转(searchEngineJump)

http://userscripts.org:8080/scripts/show/84970

searchEngineJump firefox、chrome 浏览器 下载文件不成功,手机上用safari浏览器无意中发现可以完全打开,于是在电脑上安装了safari

可以完全打开js文件下载地址:http://userscripts.org:8080/scripts/source/84970.user.js

然后另存为-所有文件 84970.user.js 搞定

3、用左右方向键翻页的脚本

nextPage.user.js

http://g.mozest.com/thread-23048-1-1.html

http://userscripts.org:8080/scripts/show/27251 阅读全文…