feat(panel): island, rail by day, companion mode beside a deep note, cached index and threads, obsidian skin for strips
This commit is contained in:
+10
-6
@@ -64,11 +64,6 @@ async function main(): Promise<void> {
|
||||
});
|
||||
await wait(80);
|
||||
|
||||
if (scene.startsWith("closed")) {
|
||||
press(document.querySelector('[aria-label="Switch conversation"]'));
|
||||
await wait(60);
|
||||
press(document.querySelector('[title="Show closed conversations"]'));
|
||||
}
|
||||
if (scene.startsWith("switcher")) {
|
||||
document
|
||||
.querySelector<HTMLButtonElement>('[aria-label="Switch conversation"]')
|
||||
@@ -104,13 +99,22 @@ async function main(): Promise<void> {
|
||||
}
|
||||
if (scene.startsWith("activity")) {
|
||||
for (const trigger of document.querySelectorAll<HTMLButtonElement>(
|
||||
'[data-slot="tabs-trigger"]'
|
||||
".rule-word"
|
||||
)) {
|
||||
if (trigger.textContent?.trim() === "Activity") {
|
||||
press(trigger);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (scene.startsWith("context")) {
|
||||
for (const trigger of document.querySelectorAll<HTMLButtonElement>(
|
||||
".rule-word"
|
||||
)) {
|
||||
if (trigger.textContent?.trim() === "Context") {
|
||||
press(trigger);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (scene.startsWith("branch")) {
|
||||
document
|
||||
.querySelector<HTMLButtonElement>(
|
||||
|
||||
Reference in New Issue
Block a user