1.- Cambie la publicidad de Facebook, lo que son sus divs y todo eso, por mis cuadros de publicidad de google adsense, para que así, en mi computadora tenga que ver mis anincios y no los de otros, jeje
2.- Que tenga un boton de seleccionar a todos
----
Hasta ahorita me encontré este codigo para ocultar los divs de publicidad, pero tambien lo hace con la barra lateral, cosa que quiero que no haga.
Código Javascript :
// ==UserScript== // @name Facebook Ad Remover // @description Removes annoying Facebook ads, and expands the newsfeed! // @author William Lewis // @include http://*.facebook.* // @include https://*.facebook.* // @version 1.0 // ==/UserScript== //Parent Element To Ads grandparent = document.getElementById('globalContainer'); var removeAdz = function(){ //Ads document.getElementById('pagelet_ego_pane_w').style.visibility = 'hidden'; document.getElementById('pagelet_reminders').style.visibility = 'hidden'; document.getElementById('pagelet_rhc_footer').style.visibility = 'hidden'; document.getElementById('rightCol').style.width = '0px'; document.getElementById('contentArea').style.width = '90%'; } //Below function happens whenever the contents of //grandparent change grandparent.addEventListener("DOMSubtreeModified", removeAdz, true); //fires off the function to start with removeAdz();
Me podrían ayudar y si se puede explicar, para que el script, oculte la publicidad de facebook y ponga la mia?
Tambien que no aga lo de quitar toda la barra lateral derecha de la pagina de inicio de FB.
Se me ocurria usar Change Div InnerHTML como lo explican aqui: http://de10.in/537679
Pero no logre que lo hiciera correctamente

Espero me puedan ayudar amigos. De antemano muchísimas gracias por su atención.