Greasy Fork is available in English.

Delete Yandex.Plus notification + enable background music on page

try to take over the world!

// ==UserScript==
// @name         Delete Yandex.Plus notification + enable background music on page
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://music.yandex.ru/users/*
// ==/UserScript==

(function() {
    'use strict';
var elem = document.querySelector("body > div.page-root.page-root_no-player.deco-pane-back > div.bar > div.bar-below.bar-below_plus > div")
elem.remove();

    // Your code here...
})();