侧栏

去掉侧栏

// ==UserScript==
// @name         侧栏
// @namespace    http://tampermonkey.net/
// @version      0.2.1
// @license      Rayu
// @description  去掉侧栏
// @author       Rayu
// @match        https://seller.shopee.tw/portal/marketing/pas/*
// @exclude      https://seller.shopee.tw/webchat/conversations
// @icon         https://icons.duckduckgo.com/ip2/shopee.com.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement('style');
    style.innerHTML = `
        .sidebar-container.with-sidebar-panel[data-v-8f1d3b1c]{
            width: 0px !important;
        }

        .sidebar-container.with-sidebar-panel[data-v-2b369ea5]{
            width: 0px !important;
        }
    `;
    document.head.appendChild(style);
})();