Untitled

 avatar
unknown
javascript
2 years ago
871 B
3
Indexable
// ==UserScript==
// @name         Hide Elements on klavogonki.ru/gamelist
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hide specified elements on klavogonki.ru/gamelist
// @author       You
// @match        http://klavogonki.ru/gamelist
// @match        https://klavogonki.ru/gamelist
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    // Add custom CSS rules to hide specified elements
    GM_addStyle(`
        .userpanel,
        #userpanel-dummy,
        .notification-bar,
        #head,
        .bar,
        #test,
        .gamelist-create,
        #gamelist,
        .feedback,
        #footer,
        #popup,
        #popalert,
        #popconfirm,
        #top-popup,
        #drop_message {
            display: none !important;
        }
    `);
})();
Editor is loading...
Leave a Comment