AntennaSkipper

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

Versione datata 26/12/2015. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==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));
      }
    }
  }
}