update conversation selector
This commit is contained in:
10
globals.js
10
globals.js
@@ -3,14 +3,18 @@ if (typeof window.globalsLoaded === "undefined") {
|
|||||||
|
|
||||||
window.globalsLoaded = true;
|
window.globalsLoaded = true;
|
||||||
|
|
||||||
const Selectors = {
|
const Selectors = {
|
||||||
|
// 更新对话选择器以匹配新的 data-testid 属性
|
||||||
conversationsCheckbox: ".conversation-checkbox:checked",
|
conversationsCheckbox: ".conversation-checkbox:checked",
|
||||||
confirmDeleteButton: "button.btn.btn-danger",
|
confirmDeleteButton: "button.btn.btn-danger",
|
||||||
threeDotButton: '[id^="radix-"]',
|
threeDotButton: '[id^="radix-"]',
|
||||||
CONVERSATION_SELECTOR: "div.relative > ol > li > div > a",
|
// 更新为新的对话选择器格式
|
||||||
|
CONVERSATION_SELECTOR: 'li[data-testid^="history-item-"]',
|
||||||
|
// 更新标题选择器,保持相对路径
|
||||||
TITLE_SELECTOR: ".relative.grow.overflow-hidden.whitespace-nowrap",
|
TITLE_SELECTOR: ".relative.grow.overflow-hidden.whitespace-nowrap",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Constants
|
||||||
const CHECKBOX_CLASS = "conversation-checkbox";
|
const CHECKBOX_CLASS = "conversation-checkbox";
|
||||||
|
|
||||||
// Expose variables to the global scope
|
// Expose variables to the global scope
|
||||||
|
|||||||
Reference in New Issue
Block a user