TheRealJoelmatic / RemoveAdblockThing

The intrusive "Ad blocker are not allowed on YouTube" message is annoying. This open-source project aims to address this issue by providing a solution to bypass YouTube's ad blocker detection
http://joelmatic.com/
MIT License
5.91k stars 318 forks source link

Avoid auto update? #601

Closed muhdkhokhar closed 2 weeks ago

muhdkhokhar commented 3 weeks ago

how I avoid auto update I have to keep rolling back to previous working version its so annoying

sorphin commented 3 weeks ago

You change the autoupdate flag from true to false in the script code in tampermonkey.

Lydialuvs commented 2 weeks ago

You change the autoupdate flag from true to false in the script code in tampermonkey.

Can you share where specifically in the code that is :)?

sorphin commented 2 weeks ago

It's up at the top area... See where I have an arrow to "right here" below..

` // ==UserScript== // @name Remove Adblock Thing // @namespace http://tampermonkey.net/ // @version 5.6 // @description Removes Adblock Thing // @author JoelMatic // @match https://www.youtube.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com // @updateURL https://github.com/TheRealJoelmatic/RemoveAdblockThing/raw/main/Youtube-Ad-blocker-Reminder-Remover.user.js // @downloadURL https://github.com/TheRealJoelmatic/RemoveAdblockThing/raw/main/Youtube-Ad-blocker-Reminder-Remover.user.js // @grant none // ==/UserScript==

(function() { // // Config //

// Enable The Undetected Adblocker
const adblocker = true;

// Enable The Popup remover (pointless if you have the Undetected Adblocker)
const removePopup = false;

// Checks for updates (Removes the popup)
const updateCheck = true;    <-------------------------- Right here

// Enable debug messages into the console
const debugMessages = true;

// Fix timestamps in the youtube comments for new method
const fixTimestamps = true;

// Enable custom modal

`