Greasy Fork is available in English.
关闭poe右边栏 2023/8/24 09:26:43
当前为
// ==UserScript==
// @name poe settings
// @namespace Violentmonkey Scripts
// @match *://poe.com/
// @match *://poe.com/chat/*
// @license MIT
// @grant none
// @version 1.0
// @author jyking
// @require https://cdn.bootcdn.net/ajax/libs/jquery/3.6.4/jquery.js
// @description 关闭poe右边栏 2023/8/24 09:26:43
// ==/UserScript==
(function () {
"use strict"
$(function(){
// 关闭右边栏
$(".SidebarLayout_right__FS_8M").attr("data-sidebar-state", 2)
})
})()