📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-10 16:04:20 +00:00
parent 2bb0dc8c1d
commit 92c0c3f687
594 changed files with 55224 additions and 19038 deletions
@@ -74,7 +74,7 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
-**Do:** Use `chrome.runtime.onInstalled` for extension initialization.
-**Do:** Use modern ES modules in scripts if configured in manifest.
-**Do:** Validate external input in content scripts before acting on it.
-**Don't:** Use `innerHTML` or `eval()` - prefer `textContent` and safe DOM APIs.
-**Don't:** Use `innerHTML` or `eval()` - prefer `textContent` and safe DOM APIs. <!-- security-allowlist: defensive extension guidance -->
-**Don't:** Block the main thread in the service worker; it must remain responsive.
## Troubleshooting