New script anitaku.pe

2024-09-14, 5:17:22 p.m.

当前为 2024-09-14 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        New script anitaku.pe
// @namespace   Violentmonkey Scripts
// @match       https://anitaku.pe/*
// @exclude     https://anitaku.pe/home.html
// @grant       none
// @version     2.0
// @author      -
// @description 2024-09-14, 5:17:22 p.m.
// @license GNU
// ==/UserScript==

document.getElementById('wrapper_inside').style.margin = '0';
document.getElementById('wrapper_inside').style.width = '100vw';

// Change properties of #wrapper
document.getElementById('wrapper').style.backgroundColor = '#1b1b1b';
document.getElementById('wrapper').style.float = 'left';
document.getElementById('wrapper').style.width = '100vw';
document.getElementById('wrapper').style.padding = '0 2vw 0 2vw';

// Change properties of section.content section.content_left
let contentLeft = document.querySelector('section.content section.content_left');
if (contentLeft) {
    contentLeft.style.float = 'left';
    contentLeft.style.width = '80vw';
}

// Shift ep selection above comments
let comments = document.getElementsByClassName('anime_video_body_comment');
let comments1 = comments[0];

let pane = document.getElementsByClassName('content_left');
let pane1 = pane[0];

pane1.append(comments1);