deletefromuser
Results
2
comments of
deletefromuser
```js document.querySelector('ncmc-list').shadowRoot.querySelectorAll("ncmc-card").forEach((item, index) => setTimeout(() => item.shadowRoot.querySelector('a[download]').dispatchEvent(new MouseEvent("click", { "view": window, "bubbles": true, "cancelable": false })), 3000 * index) ) ```
I ran into the same problem. It seems the issue stems from Chrome's Manifest V3 changes. Since I'm not familiar with front-end development, GitHub Copilot provided a quick fix. You...