This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[src="https://abs.twimg.com/responsive-web/client-web/parrot-800x400.v1.de5767b9.png"] { | |
content: url("https://cdn.discordapp.com/attachments/877970355241746442/1111501949641171034/parrot.png"); | |
} | |
[style="background-image: url(\"https://abs.twimg.com/responsive-web/client-web/parrot-800x400.v1.de5767b9.png\");"] { | |
background-image: url("https://cdn.discordapp.com/attachments/877970355241746442/1111501949641171034/parrot.png"); | |
} |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
Enable GPU accelerated content decoding and DOM compositor rendering on Linux. For more details refer to docs.
Properties can be set by navigating to about:config.
gfx.webrender.all=true
layers.mlgpu.enabled=true
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const channels = [...document.querySelectorAll("#main-link.channel-link")].map(e => { | |
const [, a, b] = e.href.match("/((?:user)|(?:channel))/(.*)$"); | |
const feed = "https://www.youtube.com/feeds/videos.xml?" + (a === "user" ? "user=" : "channel_id=") + b; | |
const channelName = e.querySelector("yt-formatted-string.ytd-channel-name").innerText; | |
return [feed, channelName]; | |
}); | |
if (channels.length == 0) { | |
alert("Couldn't find any subscriptions"); | |
} else { | |
console.log(channels.map(([feed, _]) => feed).join("\n")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Amazon Fire (HD 8) Blocklist (V.1.0) | |
# | |
# Constribute: | |
# please make a comment under this gist and I'll add it after checking to this list. | |
# | |
# Constributions by: | |
# Luro02 | |
# | |
# Credits: | |
# https://forum.xda-developers.com/amazon-fire/general/how-to-block-updates-via-router-t3640267 |