R10 AdFck

R10.Net Reklam Engelleyici

目前为 2022-04-29 提交的版本。查看 最新版本

// ==UserScript==
// @name         R10 AdFck
// @namespace    https://KekikAkademi.org/Kahve
// @description  R10.Net Reklam Engelleyici
// @copyright    2022, keyiflerolsun, https://t.me/KekikAkademi
// @version      1.1
// @license      GPLv3
// @author       @KekikAkademi
// @match        *://www.r10.net/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=r10.net
// @grant        none
// @require      http://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// ==/UserScript==


// ! Eleman Varsa Sil
function icinden_gec(secici) {
    let eleman = jQuery(secici)

    if (eleman.length) {
        eleman[0].remove()
    }

    return jQuery(secici)
}

// ! XPATH Varsa Sil
function x_path(secici) {
    let eleman = $x(secici)

    if (eleman.length) {
        eleman[0].remove()
    }

    return $x(secici)
}

// ! Link Yönlendirme İptali
function yonlendirme_sil() {
    let _yonlendir = 'https://www.r10.net/yonlendir/?adres='
    jQuery(`a[href^="${_yonlendir}"]`).each(function () {
        this.href = decodeURIComponent(this.href.replace(_yonlendir, "").split('&token')[0])
    })
}


// * Kaynak Kod Yüklenince
jQuery(document).ready(function () {

    // ! Üstteki Reklam Sil
    icinden_gec('section:contains("topbar")')

    // ! Sol Taraftaki Reklamı Sil
    icinden_gec('.head:contains("Reklam")')
    jQuery('main').css('padding-left', 0)

    // ! Hedef Linklerin Reklamlarını Sil
    icinden_gec('a[href*="jetteknoloji"]')
    icinden_gec('a[href*="ticimax"]')

    // ! Kategori İçi Sponsorlu
    icinden_gec('a[rel*="sponsored"]')

    // ! Blog Reklam Sil
    icinden_gec('div[class="blogposts"]')

    // ! Link Yönlendirme İptali
    yonlendirme_sil()

    // ! Blog Sponsorlu
    x_path("//span[contains(text(), 'SPONSORLU')]/ancestor::div[contains(@class, 'post')]")

})


// * Sayfa Yüklenince
jQuery(window).on("load", function () {

    // ! PM Alanı Fix
    if (window.location.pathname == '/private.php') {
        jQuery('div.conversation')[0].style.width = null
        jQuery('div.conversation')[0].style.height = null
        jQuery('div.conversation div')[0].style.width = null
        jQuery('div.conversation div div')[0].style.width = null
    }

})



// * Her Saniye
function kontrolEt() {

    // ! Kategori Sponsor Reklam
    jQuery('li').filter(function () {
        return this.id.match(/sponsorReklam/)
    }).remove()


    // * URL Değişince
    if (window.location.href != eldekiURL) {

        // ! Link Yönlendirme İptali
        yonlendirme_sil()

        eldekiURL = window.location.href
    }
}

var eldekiURL = window.location.href
setInterval(kontrolEt, 1000)

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址