-
Find the Discord channel in which you would like to send commits and other updates
-
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
This file contains hidden or 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
// ==UserScript== | |
// @name Eva's universal torrent gallery | |
// @namespace https://github.com/po5 | |
// @version 0.1.305 | |
// @description Gallery view for trackers | |
// @author Eva | |
// @homepage https://gist.github.com/po5 | |
// @icon https://ptpimg.me/9rmox4.png | |
// @updateURL https://gist.github.com/po5/c27eeed4412c64d7befb37feb868511e/raw/universal-torrent-gallery.user.js | |
// @downloadURL https://gist.github.com/po5/c27eeed4412c64d7befb37feb868511e/raw/universal-torrent-gallery.user.js |
This file contains hidden or 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
(function () { | |
let result = document.evaluate('//span[contains(text(), "is no longer available")]', document.body); | |
let node = null; | |
while (node = result.iterateNext()) { console.log(node.id.replace(/^itemName_/, '')) } | |
})(); |