Skip to content

Instantly share code, notes, and snippets.

@skullvalanche
Created March 18, 2021 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skullvalanche/1455adc5114fd60ddd2a6f7302599db1 to your computer and use it in GitHub Desktop.
Save skullvalanche/1455adc5114fd60ddd2a6f7302599db1 to your computer and use it in GitHub Desktop.
Turntable.fm auto-awesome userscript
// ==UserScript==
// @name Auto-awesome Turntable.fm
// @version 1.0
// @namespace https://github.com/skullvalanche
// @description Automatically clicks the 👍 button every 10s
// @author skull@skullvalanche.com
// @match https://turntable.fm/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){
document.querySelector("#room-view > div.room-renderer.mouse-map > div:nth-child(1) > div > div.awesome-button").click()
}, 10000);
})();
@skullvalanche
Copy link
Author

Instructions

  1. Install the Tampermonkey or Violentmonkey extension.
  2. Install this userscript.
  3. Profit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment