YT: not interested in one click

Hover a thumbnail on youtube.com and click an icon at the right: "Not interested" and "Don't recommend channel"

< Valutazione su YT: not interested in one click

Recensione: Bene - lo script funziona

§
Pubblicato: 08/05/2021
Modificato: 08/05/2021

The script works great. But it does not work very well with this script https://greasyfork.org/en/scripts/34388-space-efficient-youtube

wOxxOmAutore
§
Pubblicato: 08/05/2021

There's no way I can account for all the modifications that can exist...

§
Pubblicato: 08/05/2021

I get you.

wOxxOmAutore
§
Pubblicato: 08/05/2021

You can customize the positions using an additional script:

// ==UserScript==
// @name           YT: not interested in one click CSS
// @match          https://www.youtube.com/*
// @grant          GM.addStyle
// @noframes
// ==/UserScript==

GM.addStyle(`
.yt-one-click-dismiss:not(#foo) {
  right: 36px !important;
}
.yt-one-click-dismiss[data-block]:not(#foo) {
  top: 10px !important;
}
.yt-one-click-dismiss[data-block="channel"]:not(#foo) {
  top: 40px !important;
}
`);

If you use Stylus or Stylish or a similar extension:

@-moz-document domain("www.youtube.com") {
.yt-one-click-dismiss {
  right: 36px !important;
}
.yt-one-click-dismiss[data-block] {
  top: 10px !important;
}
.yt-one-click-dismiss[data-block="channel"] {
  top: 40px !important;
}
}

Pubblica risposta

Accedi per pubblicare una risposta.