venerdì 8 luglio 2011

Greasemonkey e Il Post [ITA]

Il sito Il Post pubblica alcune news in formato "Post-it", vale a dire che riporta solo il link all'articolo originale. Chi segue il sito tramite feed RSS deve quindi fare due clic per raggiungere il contenuto.

Oppure usare questo script Greasemonkey:

// ==UserScript==
// @name           Il Post - Post-it
// @namespace      personal
// @description    Inoltra da post-it a destinazione finale
// @include        http://www.ilpost.it/*
// ==/UserScript==

var h1 = document.getElementsByTagName("h1")[0];

var h1_a_href = h1.childNodes[1].getAttribute("href");

var isPostIt = document.body.innerHTML.indexOf("categoria Post-it");

if (isPostIt>=0)
{
  document.location.href = h1_a_href;
}

Nessun commento: