AntennaSkipper

アンテナサイトをfeeling luckyでスキップする

As of 2015-12-26. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        AntennaSkipper
// @namespace   jp.gr.java_conf.kyu49.antenna_skipper
// @description アンテナサイトをfeeling luckyでスキップする
// @include http*
// @version     1
// @grant       none
// ==/UserScript==
var array=[
  "2ch-c.net/",
  "matomeantena.com/feed/",
  "newresu1.blog.fc2.com/",
  "2ch-2.net/feed/",
  "lifeantenna.com/feed/",
  "www.antennash.com/",
  "www.tarikin.net/view/",
  "jyouhouya3.net/",
  "newser.cc/",
  "owata.chann.net/pickup/",
  "kateich.net",
  "news-pod.net",
  "uhouho2ch.com",
  "rd.app-heaven.net",
  "2ch.logpo.jp",
  "news-select.net",
  "matomeja.jp",
  "newpuru.doorblog.jp",
  "blog.livedoor.jp/ind_bikkuri",
  "moudamepo.com",
  "anaguro.yanen.org",
  "besttrendnews.net",
  "2ch-matome.com",
  "2chmatomeru.info",
  "news.harikonotora.net",
  "wk-tk.net"
];
if(self.location.href != top.location.href && self.location.href.indexOf("/rss.html")==-1){
  return;
}
var len_target=array.length;
if(location.href.indexOf("Im+Feeling+Lucky")!=-1){ //I am feeling luckyで一発でページが表示されなかった時
  var tags=document.getElementsByClassName("g");
  location.href=tags[0].getElementsByTagName("a")[0].href;
}else{
  var links=document.getElementsByTagName('a');
  var len_links=links.length;
  for(var i = 0; i<len_links; i++){
    for(var j =0; j<len_target; j++){
      if(links[i].href.indexOf(array[j])!=-1){
        links[i].href="http://www.google.com/search?btnI=Im+Feeling+Lucky&q="+encodeURI(links[i].text.substr(0, 15));
      }
    }
  }
}