Greasy Fork is available in English.
Eltávolítja a más oldalakat hírdető kommenteket, amik az utóbbi időben nagyon elszapordtak az oldalon...
当前为
// ==UserScript==
// @name Filmezz.eu Komment szűrő
// @namespace http://tampermonkey.net/
// @version 0.1 Alpha
// @description Eltávolítja a más oldalakat hírdető kommenteket, amik az utóbbi időben nagyon elszapordtak az oldalon...
// @author Reklám Gyűlülő
// @grant none
// @include http://filmezz.eu/*
// ==/UserScript==
(function() {
'use strict';
var cucc="article:contains('$$$$$$$$$$$$$$$$$$movies21extream.blogspot.com'),article:contains('>>>>> HULUBOTASTREAM.BLOGSPOT.COM'),article:contains('>>>FILMEZZSTREAM26.BLOGSPOT.COM'),article:contains('>>>fullmovies12018.blogspot.com'),article:contains('>>WATCHFILMEZZ.BLOGSPOT.COM'),article:contains('AMAZONFILM88.BLOGSPOT.COM'),article:contains('FILMEZZ1EU.BLOGSPOT.COM'),article:contains('FILMSONLINE7.BLOGSPOT.COM'),article:contains('METIJUANTI66.BLOGSPOT.COM'),article:contains('MOVIESIN.BLOGSPOT.COM'),article:contains('NEWSTREAMING21.BLOGSPOT.COM'),article:contains('STARFILMEN.BLOGSPOT.COM'),article:contains('STARFILMSTROMING.BLOGSPOT.COM'),article:contains('STREAMMOVIE24.BLOGSPOT.COM'),article:contains('STREAMWAY10.BLOGSPOT.COM'),article:contains('Szuper film. de ez egy rossz példány!'),article:contains('movies21extream.blogspot.com'),article:contains('➤➤ STARFILMEN.BLOGSPOT.COM'),article:contains('fullmovies12018.blogspot.com'),article:contains('FILMEZ25.BLOGSPOT.COM'),article:contains('VERPELICULASTAVAS.BLOGSPOT.COM'),article:contains('RAIHANDARELHILMY.BLOGSPOT.COM'),article:contains('https://tinyurl.com/y9ae6bho'),article:contains('t.co/0KcXKvhsBe'),article:contains('t.co/so6i65ElSS'),article:contains('STREAMING FULL VERTION'),article:contains('CINEMAZONE11.BLOGSPOT.COM'),article:contains('FILMEZSTREAM.BLOGSPOT.COM'),article:contains('SENJUMOVIE.BLOGSPOT.COM'),article:contains('t.co/NirdnF45FY'),article:contains('MOVIESTREAM10VF.BLOGSPOT.COM'),article:contains('STREAMZT.BLOGSPOT.COM'),article:contains('89FILM.BLOGSPOT.COM'),article:contains('STREAMINGVF21.BLOGSPOT.COM'),article:contains('ANDROIDFILMFR.BLOGSPOT.COM'),article:contains('Stream or Download your Favorite MOVIE & TV SHOW Full Acces'),article:contains('STREAM MOVIE & TV SHOW'),article:contains('Play & Download No Buffering'),article:contains('FILMCOMPLETENSTREAM.BLOGSPOT.COM'),article:contains('CINEMAZONK26.BLOGSPOT.COM'),article:contains('DAILYPRO88.BLOGSPOT.COM'),article:contains('PAPYSTREAMHD.BLOGSPOT.COM'),article:contains('https://netmozi.com/'),article:contains('Mocskos féreg a filmezz eu!'),article:contains('STARCOMPLETE21.BLOGSPOT.COM'),article:contains('HULUBOTAKSTREAM.BLOGSPOT.COM')";
var badDivs = $(cucc);
badDivs.remove ();
var badScripts= $("section:contains('Ez is érdekelhet')");
badScripts.remove ();
//Other thing
function ClickDelete(){
var Shit = $(cucc);
Shit.remove ();
}
document.addEventListener('click', ClickDelete);
//injection
//String operation to modify onclick event
var div1=document.getElementById('tobbihsz').innerHTML;
var string1=div1.substring(0,div1.indexOf("morehsz()"))
var string2="morehsz();setTimeout(Deleter(),1000);\" />";
var AllString=string1+string2;
console.log(AllString);
document.getElementById("tobbihsz").innerHTML = AllString;
//Inject this function
var s=function Deleter()
{
var badArticles = $(cucc);
badArticles.remove ();
console.log("WORKS!");
};
var t=function Deleter2()
{
var i;
for (i = 0; i < document.getElementsByClassName("row comment ").length; i++)
{
var badArticles = $(cucc);
badArticles.remove ();
console.log(i);
}
}
//Injection procedure(inject to head)
var script = document.createElement('script');
script.type = 'text/javascript';
script.innerHTML=String(s);
document.getElementsByTagName('body')[0].appendChild(script);
// Your code here...
})();