360

Edit UI https://my.jia.360.cn/web/myList

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

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

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         360
// @namespace    https://greasyfork.org/vi/users/20451-anh-nguyen/
// @version      1.0
// @description  Edit UI https://my.jia.360.cn/web/myList
// @author       Paul Nguyen
// @grant        none

// @require         http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
// @include        /^https?://my\.jia\.360\.cn/.*$/

// ==/UserScript==

$(function() {
    $('body > div > div.header > div').css("display", "none");
    $('#nav_wrap').css("display", "none");

    $('#ipcs_list_box > ul > li:nth-child(1) > h4 > div').click(function(event) {
        var target = $(event.target);
        //target.css("border", "1px solid red");
        //target.parent().parent().css("background-color", "yellow");
        //target.parent().css("border", "1px solid red");
        var box = target.parent().parent().find('div:first-child > div.mv-box');
        //box.css("border", "1px solid red");
        box.css("position", "fixed");
        box.addClass("box");
        box.css("background-color", "black");
    });
});
$(document).keyup(function(e) {
     if (e.key === "Escape") {
         $('div.box').css("position", "");
    }
});