Skip to content

Instantly share code, notes, and snippets.

@iusmac
iusmac / github-release-download-counter.js
Last active June 15, 2024 04:05
Print GitHub release download count per each release found on the "Releases" page.
let getReleaseTag = () => {
let url = document.URL;
const delim = '/releases/tag/';
if (url.includes(delim)) {
return url.split(delim)[1];
}
};
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function () {
@TheSunCat
TheSunCat / DisblockOrigin.theme.css
Last active October 18, 2025 18:17
Hide all Nitro & Boost upsells in Discord!
/**
* @name Adblock for Discord
* @author TheSunCat and contributors
* @version 1.0.0
* @description We have moved to Codeberg! Follow the link below:
* @source https://codeberg.org/AllPurposeMat/Disblock-Origin
*/
#app-mount::before {
content: "The Disblock Origin theme has moved to Codeberg! Please check https://codeberg.org/AllPurposeMat/Disblock-Origin";