// ==UserScript== // @name OnPoll // @version 0.1.2 // @description Sondage strawpoll dans vos topics Onche ! // @author RisiOnche // @match https://onche.org/topic/* // @icon https://www.risishack.com/vljrgv.png // @grant none // @downloadURL https://codeberg.org/GalileoR/RisiOncheScripts/raw/branch/main/onpoll.user.js // @updateURL https://codeberg.org/GalileoR/RisiOncheScripts/raw/branch/main/onpoll.user.js // ==/UserScript== (function() { 'use strict'; document.querySelectorAll("a.link[target='_blank']")?.forEach(link => { const url = link.href; if(url.startsWith("https://strawpoll.com/polls/")){ const id = url.replace('https://strawpoll.com/polls/', '').replace('/results', ''); link.insertAdjacentHTML('afterEnd', `
`); } }); })();