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 Twitch Reward Getter | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description More points! | |
// @author Ricardo Godoy | |
// @match https://www.twitch.tv/* | |
// @grant none | |
// ==/UserScript== |
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
// Plugin optins | |
const options = { | |
// List of all images | |
imageList: [ | |
'https://gamepedia.cursecdn.com/mtgsalvation_gamepedia/a/ae/Hanna1.jpg?version=4150ab7e8734543dd2b71cda0f41d01e', | |
'https://gamepedia.cursecdn.com/mtgsalvation_gamepedia/thumb/e/e1/Akroma.jpg/250px-Akroma.jpg?version=970aed6c968a817874b3b36e7ca0d210', | |
'https://www-static-blogs.operacdn.com/wp-content/uploads/sites/7/2015/12/Vimoe.jpg', | |
], | |
// Tag for next button element | |
nextButton: '.next', |
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 ($) { | |
$.scroller = function () { | |
let $scroll = $('[data-scroll]'); | |
$scroll.attr('href', 'javascript:void(0);'); | |
scrollLoad(); | |
if ( ! $scroll.length) return; |