Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save NaokiStark/b1434bce18d4111c2ee5 to your computer and use it in GitHub Desktop.
Save NaokiStark/b1434bce18d4111c2ee5 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Coso que guarda el coso de comentar los shouts
// @namespace Naoko-
// @version 0.1
// @description lo del titulo
// @include http*://www.taringa.net/*
// ==/UserScript==
if (localStorage.getItem("TaringaPriv") ==null){
localStorage.setItem("TaringaPriv",0);
}
$('.privacy-shout').attr('data-privacy',localStorage.getItem("TaringaPriv"));
$('.my-shout-footer').on('click','ul.select-list li a',function(){
localStorage.setItem("TaringaPriv",$(this).attr('data-value'));
});
var lc="li.privacy-shout-"+localStorage.getItem("TaringaPriv")+" a";
$(lc).css("color","#333");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment