ndp shut up

only show name in ndp panel

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         ndp shut up
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  only show name in ndp panel
// @author       Leifeng
// @include      /https?\:\/\/ndp\.netease\.com/index-new*/
// @require      https://code.jquery.com/jquery-latest.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if (!/overview/.test(location.hash) )  {
        return;
    };

    $(document).ready(function(){
        $('.u-linear-layout_FaugwXHe.index_module_r1smFo39').hide();
        $('[class^="index_title_"]').hide();
        $('.u-collect_noData_2l86Hu9q').hide();
        $('.u-key-value_title_2cAXsihI').hide()
        $('.u-key-value_colon_2cAXsihI').hide()
        $('.u-collect_message_2l86Hu9q').map((idx, it) => {
            $($(it).find('.u-key-value_2cAXsihI')[0]).hide();
        })
        $('table tr th').removeAttr('width')
        $('table').map((idx, table) => {
            $(table).find('tr').map((idx, trEle) => {
                $(trEle).find('td:eq(1)').hide();
                $(trEle).find('th:eq(1)').hide();

                $(trEle).find('td:eq(2)').hide();
                $(trEle).find('th:eq(2)').hide();

                $(trEle).find('td:eq(3)').hide();
                $(trEle).find('th:eq(3)').hide();

                $(trEle).find('td:eq(5)').hide();
                $(trEle).find('th:eq(5)').hide();
            })
        })
        // $('#app').hide();
        // var items = [];
        // $('[class^="u-collect_"]').map((index, collect) => {
        //     var link = $(collect).find('[class^="u-link__"]')[1];
        //     if(link) {
        //         var name = link.innerHTML;
        //         var href = link.hash;
        //         items.push(`<p><a href=${href} target="_blank" class="u-link__4y3hmbp">${name}</a></p>`);
        //     }
        // });
        // $('body').append(items)
    });
})();