`
sklst
  • 浏览: 38924 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

My New GreaseMonkey Script

阅读更多
// ==UserScript==
// @name        google reader full feed changer
// @namespace   http://blog.fkoji.com/
// @include     http://www.google.*/reader/*
// @include     https://www.google.*/reader/*
// @version     0.71
// ==/UserScript==

var SITE_INFO = [
	{
        url:    'www.eeo.com.cn',
        xpath:  '(//div[@id="text_content"]|//div[@class="content link12hui"])',
    },
	{
        url:    'www.ftchinese.com',
        xpath:  '//div[@class="content"]',
    },
	{
        url:    'www.infoq.com',
        xpath:  '//div[@class="box-content-5"]',
    },
	{
        url:    'www.hbrchina.com',
        xpath:  '//div[@id="txtcontent"]',
        charset:   'gb2312'
    },
	{
        url:    'blog.sina.com.cn',
        xpath:  '//div[@id="articleBody"]',
    },
	{
        url:    'http://news.163.com',
        xpath:  '//div[@id="endText"]',
        charset:   'gb2312'
    }
/*
    {
        url: '',
        xpath: '',
        charset: ''
    }
*/
];
var AUTO_FETCH = false;
var SHOW_ENGLISH = false;
var DO_ONCE = true;
var ON_GET = false;
var FullFeed = {};
FullFeed.link = '';
FullFeed.getFocusedLink = function() {
    return getStringByXPath('//div[@id="current-entry"]//a[@class="entry-title-link"]/@href');
}
FullFeed.getCurrentEntry = function() {
    var link = this.getFocusedLink();
    this.link = link;
    var body = getFirstElementByXPath('//div[@id="current-entry"]//div[@class="entry-body"]');
    if (!body) {
        body= getFirstElementByXPath('//div[@id="current-entry"]//div[@class="entry-body entry-body-empty"]');
    }
    var source = '';
    if (location.href.match(/#stream\/user/)) {
        source = getStringByXPath('//div[@id="current-entry"]//a[@class="entry-source-title"]/@href');
    }
    else if (location.href.match(/#search\//)) {
        source = getStringByXPath('//div[@id="current-entry"]//a[@class="entry-source-title"]/@href');
    }
    else if (location.href.match(/#stream\/feed/)) {
        source = getStringByXPath('//span[@id="chrome-title"]//a/@href');
    }
    if (!source) {
        return false;
    }
    source = decodeURIComponent(source.replace(/^\/reader\/view\/feed\//, ''));
    var len = SITE_INFO.length;
    for (var i = 0; i < len; i++) {
        var reg = new RegExp(SITE_INFO[i].url);
        if (source.match(reg) || link.match(reg)) {
            this.request(i, link, body);
			lock();
            break;
        }
    }
};
FullFeed.request = function(i, link, body) {
    var mime = 'text/html; charset=';
    if (SITE_INFO[i].charset) {
        mime = mime + SITE_INFO[i].charset;
    } else {
        mime = mime + 'utf-8';
    }
    GM_xmlhttpRequest({method: "GET", url: link, overrideMimeType: mime, onload: function(r) {
        var text = r.responseText;
        text = text.replace(/(<[^>]*?)on(?:(?:un)?load|(?:db)?click|mouse(?:down|up|over|out|move)|key(?:press|down|up)|abort|blur|change|error|focus|re(?:size|set)|select|submit)\s*?=\s*?["'][^"']*?["']/ig, "$1");
		var show163 = true;
		if (link.match('163'))
		{
			var comment = text.match('var end_board.+;');
			if (comment == null)
			{
				show163 = false;
			} else {
				eval(comment[0]);
				var comments = new Array(end_board, end_thread, end_count);
			}
//			alert(comments.length);
//			var carray = "var comments = new " + comment.replace('reply_setHidden','Array');
//			eval(carray);
		}
        text = text.replace(/<\s*?script[^>]*?>[\s\S]*?<\s*?\/script\s*?>/ig, "");
        var htmldoc = createHTMLDocumentByString(text);
        var contents = getFirstElementByXPath(SITE_INFO[i].xpath, htmldoc);

        if (contents == null) return;

        while (body.firstChild && !SHOW_ENGLISH) {
            body.removeChild(body.firstChild);
        }
		if (link.match('ftchinese') && text.match('showenglish')) SHOW_ENGLISH = true;
        if (!contents.length) {
			if (SHOW_ENGLISH)
				body.insertBefore(addTargetAttr(relativeToAbsolute(contents, link)), body.firstChild);
			else
				body.appendChild(addTargetAttr(relativeToAbsolute(contents, link)));
			if (link.match('163') && show163){
				var pElement = document.createElement("a");
				pElement.setAttribute("target","_blank");
				pElement.setAttribute("style","color:#ba2636;text-decoration:none;font-size:12px;");
				pElement.setAttribute("href","http://comment.news.163.com/"+comments[0]+"/"+comments[1]+".html");
				pElement.innerHTML="跟帖 "+comments[2]+" 条";
				var eElement = pElement.cloneNode(true);
				body.insertBefore(pElement, body.firstChild);
				body.appendChild(eElement);
			}
			if (r.status == 200 && SHOW_ENGLISH && DO_ONCE) {FullFeed.request(i, link+"&lang=en", body);DO_ONCE = false;}
            return;
        }
        // array
        for (var num = 0; num < contents.length; num++) {
            body.appendChild(addTargetAttr(relativeToAbsolute(contents[num], link)));
        }
    }, onreadystatechange: function(r){if (r.status != 200) ON_GET = false; else ON_GET = true;}});
};

function initial(){
	setTimeout(initial,2000);
	if (ON_GET)
	{
		DO_ONCE = true;
		SHOW_ENGLISH = false;
	}
}
function relativeToAbsolute(node, link) {
    var imgs = getElementsByXPath('//img', node);
    if (imgs.length) {
        for (var i = 0; i < imgs.length; i++) {
            var src = imgs[i].getAttribute('src');
            if (src) {
                imgs[i].setAttribute('src', toAbsolutePath(src, link));
            }
        }
    }
	var anchor = getElementsByXPath('//a', node);
    if (anchor.length) {
        for (var i = 0; i < anchor.length; i++) {
            var href = anchor[i].getAttribute('href');
            if (href) {
                anchor[i].setAttribute('href', toAbsolutePath(href, link));
            }
        }
    }
    return node;
}
function addTargetAttr(node) {
    var anchors = getElementsByXPath('//a', node);
    if (!anchors) {
        return false;
    }
    for (var i = 0; i < anchors.length; i++) {
        anchors[i].setAttribute('target', '_blank');
    }
    return node;
}
function createHTMLDocumentByString(str) {
    var html = str.replace(/<!DOCTYPE.*?>/, '').replace(/<html.*?>/, '').replace(/<\/html>.*/, '')
    var htmlDoc  = document.implementation.createDocument(null, 'html', null)
    var fragment = createDocumentFragmentByString(html)
    htmlDoc.documentElement.appendChild(htmlDoc.importNode(fragment, true))
    return htmlDoc
}
function createDocumentFragmentByString(str) {
    var range = document.createRange()
    range.setStartAfter(document.body)
    return range.createContextualFragment(str)
}
function getStringByXPath(xpath, node) {
    var node = node || document
    var doc = node.ownerDocument ? node.ownerDocument : node
    var str = doc.evaluate(xpath, node, null,
        XPathResult.STRING_TYPE, null)
    return (str.stringValue) ? str.stringValue : ''
}
function getElementsByXPath(xpath, node) {
    var node = node || document
    var doc = node.ownerDocument ? node.ownerDocument : node
    var nodesSnapshot = doc.evaluate(xpath, node, null,
        XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null)
    var data = []
    for (var i = 0; i < nodesSnapshot.snapshotLength; i++) {
        data.push(nodesSnapshot.snapshotItem(i))
    }
    return (data.length >= 1) ? data : null
}
function getFirstElementByXPath(xpath, node) {
    var node = node || document
    var doc = node.ownerDocument ? node.ownerDocument : node
    var result = doc.evaluate(xpath, node, null,
        XPathResult.FIRST_ORDERED_NODE_TYPE, null)
    return result.singleNodeValue ? result.singleNodeValue : null
}
function toAbsolutePath(url, base) {
    // absolute path
    if (url.match(/^https?:\/\//)) {
        return url;
    }

    var head = base.match(/^https?:\/\/[^\/]+\//)[0];
    if (url.indexOf('/') == 0) {
        return head + url;
    }

    var basedir = base.replace(/\/[^\/]+$/, '/');
    if (url.indexOf('.') == 0) {
        while (url.indexOf('.') == 0) {
            if (url.substr(0, 3) == '../') {
                basedir = basedir.replace(/\/[^\/]+\/$/, '/');
            }
            url = url.replace(/^\.+\//, '');
        }
    }
    return basedir + url;
}
function getPageFromURL(url){
	return url.replace(/^https?:\/\/[^\/].+\//, '');
}

if (AUTO_FETCH) {
    var interval = window.setInterval(
        function() {
            var focusedLink = FullFeed.getFocusedLink();
            if (focusedLink != FullFeed.link) {
                FullFeed.getCurrentEntry();
            }
        },
        500
    );
}

document.addEventListener(
    'keydown',
    function(event) {
        var key = String.fromCharCode(event.keyCode);
        if (key.toLowerCase() == 'z') {
            FullFeed.getCurrentEntry();
        }
    },
    false
);

document.addEventListener(
    'keydown',
    function(event) {
        var key = String.fromCharCode(event.keyCode);
		var name = "chrome-lhn-toggle";
        if (key.toLowerCase() == 'q') {
			var evt = document.createEvent("MouseEvents");
			evt.initEvent("click", true, true);
			document.getElementById(name).dispatchEvent(evt);
        }
    },
    false
);

document.addEventListener(
    'keydown',
    function(event) {
        var key = String.fromCharCode(event.keyCode);
		var name = "show-new";
		var showNew = document.getElementById("show-new");
		var showAll = document.getElementById("show-all");
        if (key.toLowerCase() == 'w') {
			var evt = document.createEvent("MouseEvents");
			evt.initEvent("click", true, true);
			if (showNew.className=="unselectable link"){
				showNew.dispatchEvent(evt);
			}else{
				showAll.dispatchEvent(evt);
			}
			
        }
    },
    false
);

initial();
0
0
分享到:
评论

相关推荐

    greaseMonkey

    GreaseMonkey是一款非常著名的浏览器扩展,专为 Mozilla Firefox 设计,同时也支持其他基于 Firefox 内核的浏览器。这款扩展允许用户编写自定义的 JavaScript 脚本来修改网页内容,实现个性化浏览体验,提供了对网页...

    greasemonkey

    greasemonkey-0-8-20090123-1-en-win-

    深入浅出 Greasemonkey优化

    // @name My First Script // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world // @author You // @match *://*/* // @grant none // ==/UserScript== (function...

    Greasemonkey Hacks

    Greasemonkey Hacks.chm

    深入浅出Greasemonkey.pdf

    Greasemonkey是一款Firefox浏览器扩展程序,它允许用户通过编写或安装JavaScript脚本来修改网页内容,从而提升网页的可用性和功能性。Greasemonkey本身不直接执行任何改变,而是需要用户安装特定的脚本——用户脚本...

    深入浅出Greasemonkey,油猴脚本入门

    Greasemonkey 的主要组成部分是用户脚本(user script),它是一大块 Javascript 代码,还有些附加信息,用来告诉 Greasemonkey 脚本应该在何时何地运行。每个用户脚本能够针对具体页面,具体网站,或者一批网站。用户...

    GreaseMonkey.xpi

    FIREFOX专用GreaseMonkey.xpi

    深入浅出 Greasemonkey

    这本书、及其样例代码和视频文件都是自由软件。在“GNU 通用公共许可证(自由软件基金会)(版本2以及更新版本)”许可下,您可以随意的再分发和/或修改它们。我们发行这本书、及其样例代码和视频文件,希望它能对您有所...

    Script:部落战争恶霸的Greasemonkey扩展

    -军阀TW扩展Sangu软件包是适用于Firefox,Opera和Chrome的Greasemonkey脚本,可通过在几乎每个页面(尤其是村庄概览页面)上添加额外功能来提高《游戏速度并优化游戏流程。 在可用,或与安装。支持Sangu软件包支持...

    深入Greasemonkey

    《深入Greasemonkey》是一本专为Firefox用户编写的指南,主要介绍如何利用Greasemonkey这款强大的浏览器扩展来定制和改善网络浏览体验。Greasemonkey是Firefox的一个插件,它允许用户通过编写JavaScript脚本来修改...

    深入浅出_Greasemonkey

    《深入浅出_Greasemonkey》是一本关于如何使用Greasemonkey扩展的书籍,旨在指导用户编写和管理能够改变网页行为和外观的用户脚本。Greasemonkey是一个在Firefox浏览器上运行的扩展程序,通过允许用户在客户端执行...

    Firefox用户脚本管理器(Greasemonkey) v1.10火狐插件.rar

    Greasemonkey是Mozilla Firefox的一个附加组件。它让用户安装一些脚本使大部分HTML为主的网页于用户端直接改变得更方便易用。随着Greasemonkey脚本常驻于浏览器,每次随着目的网页打开而自动做修改,使得运行脚本的...

    firefox插件greasemonkey-0.8.20080609.0-fx_PConline.xpi

    firefox插件greasemonkey-0.8.20080609.0-fx_PConline.xpi

    greasemonkey-4.11.xpi

    greasemonkey-4.11.xpi

    Chrome最新4.0版本支持GreaseMonkey脚本

    Chrome浏览器的4.0版本引入了一个重大更新,即对GreaseMonkey脚本的支持。这是一个对开发者和用户都极具价值的功能,因为GreaseMonkey脚本允许用户自定义网页的行为,为浏览器带来更多的定制化可能性。在此之前,...

    greasemonkey-scripts:Greasemonkey Tampermonkey脚本

    Greasemonkey / Tampermonkey脚本 这是我收集的GM脚本。 8首曲目隐藏专辑封面 该脚本将隐藏带有渐变的专辑封面。 我之所以开发此功能,是因为我听的某些曲目的专辑封面在工作环境(NSFW)中可能令人反感。 亚马逊每...

    Faster-Pinning-Greasemonkey-Script:减少回复所需的点击次数

    Faster-Pinning-Greasemonkey-Script 修改 Pinterest 的“重新固定”界面,将面板选择器从下拉菜单变成按钮。 目前,点击“Pin”会显示这样的模式: 如果你不打算换板,那很容易。 但是,如果您更改板并必须滚动浏览...

    Greasemonkey Port:SeaMonkey浏览器的Greasemonkey端口-开源

    请注意,不能保证XPI安装将在公告的minVersion和maxVersion中运行。 Farby确实包含了SeaMonkey的一些基础知识,但是似乎缺少了一些东西。... https://openuserjs.org/announcements/Greasemonkey_Port_Update上的公告

    greasemonkey:个人 Greasemonkey 脚本

    Greasemonkey是一款非常著名的浏览器扩展,主要用于Firefox,后来也有类似功能的油猴脚本(Tampermonkey)在Chrome和其他浏览器上流行。标题中的“个人Greasemonkey脚本”表明这是一个用户自定义的脚本集合,可能...

Global site tag (gtag.js) - Google Analytics