把侧边栏去掉
// ==UserScript==
// @name sentry适合竖屏
// @namespace https://jeff.wtf/
// @version 0.1
// @description 把侧边栏去掉
// @author kindJeff
// @match https://sentry.17bdc.com/shanbay/*/issues/*/
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$(document).ready(function(){
setTimeout(function(){
$("body").css("padding-left", 0)
$($(".app").children()[0]).hide()
}, 1000)
})
})();