// ==UserScript== // @name Bypass DF // @description Bypass para Diario Financiero, a través de DFU.owo.cl. Añade un botón // @match *://www.df.cl/noticias/* // @version 0.0.1.20210524225401 // @namespace https://greasyfork.org/users/775826 // @downloadURL none // ==/UserScript== /*--- Crea el botón y lo añade al título de la noticia */ var zNode = document.createElement ('div'); zNode.innerHTML = '' ; zNode.setAttribute ('id', 'myContainer'); document.getElementById("titulo_articulo").appendChild (zNode); //--- Activa el boton document.getElementById ("myButton").addEventListener ( "click", ButtonClickAction, true ); //--- Concatena el link de DFU.owo.cl con la URL de la noticia actual function ButtonClickAction (zEvent) { /*--- */ window.open('https://dfu.owo.cl/#' + window.location.href); }