New Userscript

try to take over the world!

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.tapd.cn/*
// @grant        none
// ==/UserScript==

(function() {
   let url = window.location.href;
if(url === "https://www.tapd.cn/my_worktable/index/created" || url === "https://www.tapd.cn/my_worktable/?from=left_tree_cloud_v2"){
    console.log(1);
    created();
}else if(url === "https://www.tapd.cn/my_worktable/index/done"){
    console.log(2);
    done();
}else if(url === "https://www.tapd.cn/my_worktable/index/todo" || url === "https://www.tapd.cn/my_worktable/?from=left_tree_cloud_v2"){
    console.log(3);
    todo();
}else if(url === "https://www.tapd.cn/my_worktable/?from=left_tree_cloud_v2"){
    console.log(4);
    my_create();
}else if(url.indexOf("https://www.tapd.cn/letters/?from=top_nav_worktable_v2") !== -1){
    console.log(5);
    info();
}else if(url === "https://www.tapd.cn/21934581/personal_documents/my_create/?from=left_tree_v2"){
    console.log(6);
    text();
}else if(url === "https://www.tapd.cn/personal_settings/index?tab=dynamic"){
    console.log(7);
    my();
}else if(url === "https://www.tapd.cn/21934581/personal_documents/my_cooperation"){
    console.log(8);
    my_cooperation();
}
else{
    console.log(9);
    project();
}

function public(){
    document.querySelectorAll(".left-tree-project-list")[0].style.right = "-300px";
    document.querySelectorAll(".left-tree-project-list")[0].style.width = "300px";
      setTimeout(function(){
      $('.project-name').css("overflow","inherit");
       $('.project-name').css("word-wrap ","break-word");
         $('.project-name').css("white-space"," initial");
      }, 1000);
}

function created(){
    document.querySelectorAll(".section-work")[0].style.paddingLeft = "300px";
    public();
}/*兼容我的创建*/

function todo(){
    document.querySelectorAll("#worktable_iaction")[0].style.paddingLeft = "300px";
    document.querySelectorAll(".section-work")[0].style.paddingLeft = "300px";
    public();
}/*兼容我的待办*/

function done(){
    document.querySelectorAll(".section-work")[0].style.paddingLeft = "300px";
   document.querySelectorAll(".view-wrap")[0].style.paddingLeft = "300px";
   document.querySelectorAll("#worktable_iaction")[0].style.paddingLeft = "300px";
    public();
}/*兼容我的已办*/

function my_create(){
    document.querySelectorAll("#pege-content")[0].style.paddingLeft = "325px";
    document.querySelectorAll("#operate-bar-personal")[0].style.paddingLeft = "325px";
   public();
}/*兼容我的创建*/

function info(){
    document.querySelectorAll("#page-content")[0].style.paddingLeft = "300px";
   public();
}/*兼容消息中心*/

function text(){
    document.querySelectorAll("#page-content-inner")[0].style.paddingLeft = "300px";
    document.querySelectorAll("#operate-bar-personal")[0].style.paddingLeft = "300px";
    public();
}/*兼容个人文档*/

function project(){
     document.querySelectorAll(".project-nav")[0].style.paddingLeft = "300px";
    document.querySelectorAll("#page-content")[0].style.paddingLeft = "300px";
    public();
}/*兼容项目明细*/

function my(){
     document.querySelectorAll("#page-content")[0].style.paddingLeft = "300px";
     public();
}/*兼容我的动态*/

function my_cooperation(){
    document.querySelectorAll('#operate-bar-personal')[0].style.paddingLeft = "300px";
    document.querySelectorAll('#file-list')[0].style.paddingLeft = "300px";
    public();
}

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