We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f93f6c commit 7926040Copy full SHA for 7926040
src/contentScript.js
@@ -541,7 +541,10 @@ const timerId = setInterval(() => {
541
clearInterval(timerId);
542
return console.error(t("app.initializeContentScriptFailed"));
543
}
544
- if(document.title.includes("力扣加加")) return
+
545
+ // 防止 insertButton 在本插件应用中执行,会匹配到题目中包含 "Run" 的情况,例如:“1480. Running Sum of 1d Array”
546
+ if (document.title.includes("力扣加加")) return
547
548
insertButton();
549
550
// if (inserted && submitProxied) {
0 commit comments