We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92889ab commit f70a925Copy full SHA for f70a925
1 file changed
Invite Code Tool/Invite Code Tool.user.js
@@ -3,7 +3,7 @@
3
// @name:en Tool for register with invite code
4
// @name:zh-TW 注冊邀請碼搶碼工具
5
// @namespace hoothin
6
-// @version 0.3
+// @version 0.5
7
// @description 自动遍历论坛注册邀请码得出正确结果
8
// @description:en Just a tool for register with invite code
9
// @description:zh-TW 自動遍歷論壇注冊邀請碼得出正確結果
@@ -120,7 +120,7 @@
120
GM_registerMenuCommand("开始筛选邀请码", function(){
121
var codeStr=prompt("输入邀请码:","");
122
if(!codeStr)return;
123
- codeArr=codeStr.pmatch((is1024?/\b([0-9a-z\*]{16})\b/gi:/\b([0-9a-z]{6})(?:\s|$)/gi));
+ codeArr=codeStr.pmatch((is1024?/\b([0-9a-z\*]{16})\b/gi:/(?:^|c=|[^=])\b([0-9a-z]{6})(?:\s|$)/gi));
124
if(codeArr===0)return;
125
geneCodeArr();
126
checkCode();
0 commit comments