Make feedback button or summarize button optional
complete
Bolo Forms
complete
B
Benedict Forester
100%, please make it go away. On by default but add possibility to turn it off in settings
Tampermonkey Fix it
how to remove the Feedback & Summarize Button:
// ==UserScript==
// @name YouTube Ad Hider
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Hide specific elements on YouTube
// @author You
// @match https://www.youtube.com/watch?*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var intervalId = setInterval(function() {
var feedbackBtn = document.getElementById('AdSpeedUpFeedbackBtn');
var sidebarComponent = document.getElementById('AdSpeedUpSidebarComponent');
if (feedbackBtn) {
feedbackBtn.style.display = 'none';
}
if (sidebarComponent) {
sidebarComponent.style.display = 'none';
}
}, 10000);
})();
ahmed rayan
the feedback button is out of place i think they should change the colour to fit in and not be distracted
Bolo Forms
Bolo Forms
Bolo Forms
Bolo Forms
Bolo Forms
medicfrombrazil_
so buggy
Load More
→