(element)
| 4 | import { sendToBackground } from "@plasmohq/messaging" |
| 5 | |
| 6 | export function scrollToTop(element) { |
| 7 | window.scrollTo({ |
| 8 | top: element.offsetTop - 50, |
| 9 | behavior: "smooth" // 可选,平滑滚动 |
| 10 | }) |
| 11 | } |
| 12 | |
| 13 | export function addCss(code, id?) { |
| 14 | const style = document.createElement("style") |
nothing calls this directly
no outgoing calls
no test coverage detected