Script anti anuncios -- 2
Budget: $10 – $30 USD
Busco un script tipo iframe capaz de bloquear anuncios de diferentes páginas web
En estas pueden encontrar los tipos de anuncios:
https://droidstore.tk/
https://www.cuevana3.eu/
darkingapp.blogspot.com
Ejemplo de script
<head>
<title>My Ad-Blocking Website</title>
</head>
<body>
<h1>Welcome to My Ad-Blocking Website</h1>
<!-- Embed the iframe with the website you want to block ads on -->
<iframe src="https://droidstore.tk" width="800" height="600" id="myIframe"></iframe>
<script>
// Add a function to load uBlock Origin within the iframe
document.getElementById('myIframe').addEventListener('load', function () {
var iframe = document.getElementById('myIframe');
// Inject the uBlock Origin code into the iframe
iframe.contentWindow.document.write('<script src="https://url-of-uBlock-Origin.com/uBlockOrigin.js"></script>');
});
</script>
</body>
</html>
En estas pueden encontrar los tipos de anuncios:
https://droidstore.tk/
https://www.cuevana3.eu/
darkingapp.blogspot.com
Ejemplo de script
<head>
<title>My Ad-Blocking Website</title>
</head>
<body>
<h1>Welcome to My Ad-Blocking Website</h1>
<!-- Embed the iframe with the website you want to block ads on -->
<iframe src="https://droidstore.tk" width="800" height="600" id="myIframe"></iframe>
<script>
// Add a function to load uBlock Origin within the iframe
document.getElementById('myIframe').addEventListener('load', function () {
var iframe = document.getElementById('myIframe');
// Inject the uBlock Origin code into the iframe
iframe.contentWindow.document.write('<script src="https://url-of-uBlock-Origin.com/uBlockOrigin.js"></script>');
});
</script>
</body>
</html>