Firefox (4)

Firefox greasemonkey

C:\Users\XXXX\AppData\Roaming\Mozilla\Firefox\Profiles\XXXXXXXX.default\gm_scripts\config.xml change 修改 http://* https://* to http://* http://*.google.com/* http://*.google.fr/* http://*.hotmail.com/* http://*.live.com/*
Read more...

Show Btchina greasmonky

显示BTCHINA种子 功能: 1、显示BTCHINA索引页种子列表; 2、去除BTCHINA索引页和搜索页上的广告(包括点击链接时出现的flash); 3、可去除索引页和搜索页上预览时出现的大量图片(可以选择保留)及flash,只留下文字简介。 选项: 显示剧照、显示警告内容、显示镜像及联盟站点、热门刷新,在 工具--> User Script Commands(用户脚本命令)里。 http://userscripts.org/scripts/show/33286 33286.user.js // This is a greasemonkey script, for use with the Firefox extension Greasemonkey.// More info: http://greasemonkey.mozdev.org///// ==UserScript==// @name Show Btchina// @author Sunwan// @e-mail <Sunwan>AT<zjcnnj.cn>// @version 1.2.1// @description Show torrent in btchina.net [Ver. 1.2.1]// @namespace http://www.cnnj.8866.org/download/greasemonkey/// @include http://*.btchina.net/*// @include http://*.sa20.com/*// ==/UserScript==// JScript.encode解码器// 改编自Soya.Encode.ScriptDecoderfunction JScriptDecoder(){ this.$matrix = []; this.$rotor = [ 1,2,0, 1,2,0, 2,0,0, 2,0,2, 1,0,2, 0,1,0, 2,0,1, 1,2,0, 0,2,1, 0,2,0, 0,2,1, 1,0,2, 0,2,0, 1,0,1, 1,2,0, 1,0,2, 1,0,2, 0,1,1, 2,0,0, 1,1,2, 0,1,0, 2]; this.$ccmap = [ 0x7b,0x57,0x6e, 0x32,0x2e,0x2d, 0x30,0x47,0x75, 0x21,0x7a,0x52, 0x29,0x56,0x60, 0x5b,0x42,0x71, 0x38,0x6a,0x5e, 0x33,0x2f,0x49, 0x3d,0x26,0x5c, 0x58,0x49,0x62, 0x3a,0x41,0x7d, 0x35,0x34,0x29, 0x65,0x32,0x36,…
Read more...

Next Page greasemonkey

使用左右方向键来翻页,→键下一页,←键上一页。 适用:英文和中文的大部分页面。 特点:简单、快速、占用资源少。 原理:是通过判断翻页链接的文字或图片信息来实现翻页。 若和页面原来的按键冲突,请到greasemonkey管理器里增加或删除相应的网址。 自定义翻页链接关键词: 在 工具 --> greasemonkey --> 用户脚本命令里,关键词之间用“,”或“,”分隔开,允许使用正则表达式,0.1.7.0版本起可以在关键词前面添加域名或网址(以花括弧“{}”括起 来,可以包含通配符“*”,不同网址使用相同的关键词,可以用“|”分隔网址)如使用 older, a\s+b,{*.readnovel.com}\S*下一页,{ww.xxxxx.com|*.yyyyy.cn}older page 等作为关键词。 ----------------------------------------------------------- firegestures 的自定义手势脚本(注意:手势起点必须在要翻页的页或帧里): 下一页代码: try { var node = FireGestures.sourceNode; } catch (e) {} while (node && node.nodeName != "BODY") node = node.parentNode; if (!node) node = getBrowser().contentDocument; var e = document.createEvent("KeyboardEvent"); e.initKeyEvent("keydown", true, true, window, false, false, false, false, 39, 0); node.dispatchEvent(e); 上一页代码: try { var node = FireGestures.sourceNode; } catch (e) {} while (node && node.nodeName != "BODY") node = node.parentNode; if (!node) node = getBrowser().contentDocument; var e = document.createEvent("KeyboardEvent"); e.initKeyEvent("keydown", true, true, window, false, false, false, false, 37, 0); node.dispatchEvent(e);…
Read more...

Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/category.php on line 191