chore: 整理 third-party Dark Reader 目录并移除本地说明文件跟踪
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
(() => {
|
||||
if (window.top === window.self) {
|
||||
return;
|
||||
}
|
||||
const topDoc = window.top!.document;
|
||||
const style = topDoc.createElement('style');
|
||||
style.textContent = [
|
||||
'body { background-color: #222222; color: #dddddd; }',
|
||||
'#banner { background-color: #226644; }',
|
||||
'.executing { background-color: #662233; }',
|
||||
].join('\n');
|
||||
topDoc.head.append(style);
|
||||
})();
|
||||
Reference in New Issue
Block a user