Auto-awesome Turntable.fm

Automatically clicks the 👍 button every 10s

// ==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);
})();