-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclear_button.uc.js
120 lines (102 loc) · 3.17 KB
/
clear_button.uc.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
function apply_clear_button() {
let styles = `
#clear-button {
border: none;
background: none;
transition-duration: 0.1s;
opacity: 0;
position: absolute;
color: rgba(255,255,255, 0.3);
}
#browser:not(:has(#navigator-toolbox[zen-expanded="true"])) {
#clear-button {
font-size: 12px !important;
}
}
#browser:has(toolbox[zen-right-side="true"]) {
#vertical-pinned-tabs-container-separator {
margin-right: 0px !important;
}
#clear-button {
left: 0px;
}
}
#browser:not(:has(toolbox[zen-right-side="true"])) {
#vertical-pinned-tabs-container-separator {
margin-left: 0px !important;
}
#clear-button {
right: 0px;
}
}
#vertical-pinned-tabs-container-separator {
display: grid !important;
place-items: center !important;
transition-duration: 0.1s;
}
#browser:has(#navigator-toolbox[zen-expanded="true"]) {
#tabbrowser-tabs:hover > #vertical-pinned-tabs-container-separator {
width: calc(100% - 50px) !important;
}
}
#browser:not(:has(#navigator-toolbox[zen-expanded="true"])) {
#tabbrowser-tabs:hover > #vertical-pinned-tabs-container-separator {
width: calc(100% - 50px) !important;
}
}
#browser:not(:has(#navigator-toolbox[zen-expanded="true"])) {
#vertical-pinned-tabs-container-separator {
margin-bottom: 15px;
margin-top: 15px;
}
}
#tabbrowser-tabs:hover > #vertical-pinned-tabs-container-separator > #clear-button {
border: none;
opacity: 1 !important;
}
#clear-button:hover {
color: rgb(255,255,255) !important;
}
.tab-closing {
animation: fadeUp 0.5s forwards;
}
@keyframes fadeUp {
0% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(-20px);
}
}
`;
let styleSheet = document.createElement("style");
styleSheet.textContent = styles;
document.head.appendChild(styleSheet);
var button = document.createElement("button");
button.innerHTML = "↓ Clear";
button.setAttribute("id", "clear-button");
var body = document.getElementById("vertical-pinned-tabs-container-separator");
body.appendChild(button);
button.addEventListener("click", async () => {
let pinnedTabs = await window.ZenPinnedTabsStorage.getPins();
for (let tab of gBrowser.tabs) {
let isSameWorkSpace = tab.getAttribute('zen-workspace-id') === window.ZenWorkspaces.activeWorkspace;
let isSelected = tab.selected;
let isPinned = pinnedTabs.some(e => e.uuid === tab.getAttribute('zen-pin-id'));
let isInGroup = !!tab.closest('tab-group');
if (isSameWorkSpace && !isSelected && !isPinned && !isInGroup) {
tab.classList.add('tab-closing');
setTimeout(() => {
gBrowser.removeTab(tab, {
animate: false,
skipSessionStore: false,
closeWindowWithLastTab: false,
});
}, 500);
}
}
});
}
apply_clear_button();