GreaseMonkey

isnot.jp/wiki [Permalink] [編集] [差分]

最終更新:2006-02-08 18:30:02

RDiEPG

 // ==UserScript==
 // @name           RDiEPG
 // @namespace      http://isnot.jp/?p=GreaseMonkey
 // @description    iEPG link with RD-Style
 // @include        http://tv.www.infoseek.co.jp/*
 // @include        http://tv.nikkansports.com/*
 // ==/UserScript==
 
 (function() {
	var aElm = document.getElementsByTagName('a');
	for (i=0; i<aElm.length; i++) {
		if (aElm[i].href.match(/(tvpi\.epg|iepg\.php)/)) {
			aElm[i].href = aElm[i].href.replace(/http:\/\//,"http://192.168.1.254/@@@@@@");
		}
	}
 })();

[FrontPage]

いしだなおと it@isnot.jp