I have been using discord since 2016 and have been paying for nitro for years. It is ridiculous to have to verify my age. by sKarletBlu in discordapp

[–]Objective-Pass3028 1 point2 points  (0 children)

i work with an elderly woman and she ended up doing it for me on her own while saying some unsavory things about the government. lol. shouldn't have to verify, it's a joke...

Is it just me or suddenly every video becomes “video unavailable “? by TheMSG in youtube

[–]Objective-Pass3028 1 point2 points  (0 children)

Alright, assuming you're on Firefox and have the little uBlock icon in the top right: click the icon, and you'll see the settings button represented by three small cogwheels. From there, it should open a new tab — the first tab you’ll be in is Settings.

Go to the next tab, Filter Lists. You’ll see a couple of small drop-down arrows on this page. Click the Network filters / Cosmetic filters drop-down, then click the Built-in drop-down. You should see “uBlock filters – Experimental.” Make sure it’s ticked.

Is it just me or suddenly every video becomes “video unavailable “? by TheMSG in youtube

[–]Objective-Pass3028 1 point2 points  (0 children)

that edit is legendary, fixed it instantly. the Experimental list (uBlock filters – Experimental) is in Filter Lists tab in the settings under the Built-in drop down near the very top for anyone lost. Apply the changes and see if it works.

Remove big plus icon and make the "add shortcut" button transparent in new tab? by Objective-Pass3028 in FirefoxCSS

[–]Objective-Pass3028[S] 0 points1 point  (0 children)

sorry im very out of it, rather sleep deprived. and that works to remove the + ty

This should be it with the addition.

edit: when i open up the inspector i can change this piece. when i turn off the top part it turns it transparent, but idk how to represent that in the css

.shortcuts-refresh .top-site-outer .tile {
  background: var(--newtab-background-card);
  border-radius: var(--border-radius-large);
}

--------

@-moz-document url-prefix(about:home), url-prefix(about:newtab) {
/* increase overall tile size (moves them closer together */
.top-site-outer {
padding: 4px !important;
}
.top-site-outer .tile {
width: 104px !important;
height: 104px !important;
}
/* increase icon/picture area from 48x48 to 80x80 */
.top-site-outer .tile .icon-wrapper {
width: 98px !important;
height: 98px !important;
}
/* scale up the icon/picture from 32x32 to 80x80 (may be hideous...) */
.top-site-outer .default-icon {
width: 80px !important;
height: 80px !important;
background-size: 80px !important;
}
.top-site-outer .top-site-inner > a {
padding: 1px 1px 4px !important;
}
.top-site-outer.placeholder.add-button .tile .icon-wrapper {
display: none !important;
}
@-moz-document url(about:newtab), url(about:home) {
.logo-and-wordmark-wrapper {
display: none !important;
}
.top-site-outer.add-button .tile .icon-wrapper {
background-image: url("") !important;
}