* 查找备用插入位置 * @returns {HTMLElement|null} 备用位置元素或null
()
| 404 | * @returns {HTMLElement|null} 备用位置元素或null |
| 405 | */ |
| 406 | function findFallbackInsertPosition() { |
| 407 | return document.querySelector(SELECTORS.headerButtons) || |
| 408 | document.querySelector(SELECTORS.headerIcons) || |
| 409 | document.querySelector(SELECTORS.headerDropdown)?.parentElement; |
| 410 | } |
| 411 | |
| 412 | /** |
| 413 | * 将开关按钮插入到页面中 |
no outgoing calls
no test coverage detected