我正試圖將一小段UserStyles視覺主題代碼轉(zhuǎn)換成TamperMonkey腳本。直到幾個月前,UserStyles.org還有一項功能,讓你只需點擊一個按鈕就能做到這一點。唉,已經(jīng)沒有了。
請幫我將下面的CSS代碼轉(zhuǎn)換成UserScript:
/* ==UserStyle==
@name Remove Youtube left sidebar
@description Makes YouTube sidebar collapse
@author fgtranime
@license No License
==/UserStyle== */
@-moz-document domain("youtube.com") {
#guide {
display: none;
}
ytd-app[guide-persistent-and-visible] ytd-page-manager.ytd-app {
margin-left: 0;
}
}
我已經(jīng)嘗試使用GitHub上的幾個轉(zhuǎn)換器,但是沒有一個能給出想要的結(jié)果。
這是基于你的用戶風(fēng)格的用戶腳本
// ==UserScript==
// @name Remove Youtube left sidebar
// @description Makes YouTube sidebar collapse
// @match *://*.youtube.com/*
// @version 1.0
// @grant GM_addStyle
// ==/UserScript==
const css =
`#guide {
display: none;
}
ytd-app[guide-persistent-and-visible] ytd-page-manager.ytd-app {
margin-left: 0;
}`;
GM_addStyle(css);