NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Music7S Row Style // @namespace http://tampermonkey.net/ // @version 0.1 // @description row style add // @author devAston and PapaIvan // @license MIT // @match https://music7s.appspot.com/* // @grant none // @copyright 2019, devAston (https://openuserjs.org/users/devAston) // ==/UserScript== // @require http://code.jquery.com/jquery-3.4.1.min.js var $, jQuery; $ = jQuery = window.jQuery; (function () { 'use strict'; $('body').on('click', 'div.sp_notify_prompt', function (event) { $('div.collection-item.active').removeClass('active'); $(this).closest('.collection-item').addClass('active'); console.log(this); }) })();