-
Notifications
You must be signed in to change notification settings - Fork 1
/
changeMode.js
98 lines (81 loc) · 2.35 KB
/
changeMode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// chrome.storage.sync.get('isTurn', function (data) {
// turn = data.isTurn;
// console.log(turn);
// let darkPint = document.getElementById("darkPint");
// if (turn == null || turn == undefined) chrome.storage.sync.set({ isTurn: true });
// if (turn == false) {
// if (darkPint) useCSS();
// }
// else if (darkPint) {
// if (!darkPint) {
// console.log("негра нет")
// } else {
// darkPint.innerHTML = "";
// }
// }
// chrome.storage.sync.set({ isTurn: !turn }, () => {
// chrome.storage.sync.get('isTurn', function (dataNew) {
// console.log(dataNew.isTurn);
// });
// });
// });
// function useCSS() {
// let darkPint = document.getElementById("darkPint");
// if (!darkPint) console.log("негра нет")
// darkPintStyle = document.createElement("style");
// darkPintStyle.innerHTML = `body {
// background-color: #121212 !important;
// }
// .appContent > :nth-child(1) {
// background-color: #121212 !important;
// }
// .gUZ.sj_.U9O.kVc > :nth-child(1) {
// filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(342deg) brightness(102%) contrast(102%);
// }
// /* Это кнопка выбора пункта */
// .Eqh.P_h.fZz.fev.zI7.iyn.Hsu {
// background-color: #1f1f1f24;
// }
// /* Это кнопка не выбранного пункта */
// .tBJ.dyH.iFc.sAJ.O2T.tg7.H2s {
// color: #ffffff81;
// }
// /* поиск */
// .Jea.fev.gpV.zI7.iyn.Hsu {
// background-color: #ff1e1e00;
// }
// .Jea.fev.gpV.zI7.iyn.Hsu:hover {
// background-color: #ff1e1e00;
// }
// #justSearch {
// background-color: #e0858500;
// z-index: -400;
// }
// .C9q.Jea.fZz.gjz.ujU.xcv.L4E.zI7.iyn.Hsu {
// background-color: #1f1f1f;
// }
// .mainContainer {
// margin-top: 30px;
// }
// .zI7.iyn.Hsu{
// background-color: #ff1e1e00;
// }
// .tBJ.dyH.iFc {
// color: rgb(180, 180, 180);
// }
// .lH1.dyH.iFc.H2s.R-d.O2T.zDA.IZT {
// color: rgb(180, 180, 180);
// }
// .XiG.sLG.zI7.iyn.Hsu {
// border-radius: 0px !important;
// }
// .XiG.sLG.zI7.iyn.Hsu.NB {
// border-radius: 16px !important;
// }
// .Yl-.MIw.Hb7 > div {
// /* padding: 15px !important; */
// }
// `;
// darkPintStyle.id = "darkPintStyle";
// darkPint.appendChild(darkPintStyle);
// }