diff --git a/build/js_authors.py b/build/js_authors.py new file mode 100644 index 00000000..4ab43e8b --- /dev/null +++ b/build/js_authors.py @@ -0,0 +1,141 @@ +import os +import sys +import json + +# 指定要处理的文件夹路径 +# folder_path = r"C:\Users\ThinkPadE16\Documents\GitHub\bettergi-scripts-list\repo\pathing" # 修改为你的路径,如 r"C:\Users\..." 或 "./jsons" + +# 作者重命名映射:旧名 -> 新名 +author_rename = { + "起个名字好难": "起个名字好难的喵", +} + +# 作者映射表:用于自动填入 links +author_links = { + "秋云": "https://github.com/physligl", + "起个名字好难的喵": "https://github.com/MisakaAldrich", + "火山": "https://github.com/RRRR623", + "mno": "https://github.com/Bedrockx", + "汐": "https://github.com/jiegedabaobei", + "Tool_tingsu": "https://github.com/Tooltingsu", + "吉吉喵": "https://github.com/JJMdzh", + "曦": "https://github.com/cx05121", + "ddaodan": "https://github.com/ddaodan", + "LCB-茶包": "https://github.com/kaedelcb", + "蜜柑魚": "https://github.com/this-Fish", + "彩虹QQ人":"https://github.com/KRdingsan", + "mfkvfhpdx": "https://github.com/mfkvfhpdx", + "提瓦特钓鱼玳师": "https://github.com/Hijiwos", + "柒叶子": "https://github.com/5117600049", + "不瘦五十斤不改名": "https://github.com/PanZic", + "½": "https://github.com/Traveler07", + "Patrick-Ze (AyakaMain)": "https://github.com/Patrick-Ze", + "风埠": "https://github.com/jhkif", + "jbcaaa":"https://github.com/jbcaaa", + "johsang":"https://github.com/johsang", + "寒烟": "https://github.com/214-hanyan", + "灰林鸮": "https://github.com/Strix-nivicolum", + "Tim": "https://github.com/Limint", + "花见木易": "https://github.com/Flower-MUYi", + "无限不循环": "https://github.com/non-repeating001" +} + +# 获取命令行参数 +if len(sys.argv) < 2: + print("❌ 请提供要处理的目录路径,例如:") + print(" python authors.py D:\GitHub\bettergi-scripts-list\repo\pathing") + sys.exit(1) + +folder_path = sys.argv[1] + +if not os.path.exists(folder_path): + print(f"❌ 路径不存在:{folder_path}") + sys.exit(1) + +print(f"🚀 启动,递归处理文件夹:{folder_path}") + +count_total = 0 +count_modified = 0 + +for root, dirs, files in os.walk(folder_path): + for filename in files: + if filename.endswith("manifest.json"): + count_total += 1 + file_path = os.path.join(root, filename) + print(f"\n🔍 正在处理:{file_path}") + + try: + with open(file_path, "r", encoding="utf-8") as f: + data = json.load(f) + except Exception as e: + print(f"❌ JSON 解析失败:{e}") + continue + + # info = data.get("info") + # if not isinstance(info, dict): + # print("⚠️ 缺少 info 字段或格式错误") + # continue + + author_field = data.get("authors") + if author_field is None: + print("⚠️ 缺少 author 字段") + continue + + modified = False + + # 字符串情况(含单人或 & 多人) + # 情况 1:字符串类型 + if isinstance(author_field, str): + names = [name.strip() for name in author_field.split("&")] + new_authors = [] + for name in names: + new_name = author_rename.get(name, name) + author_obj = {"name": new_name} + if new_name in author_links: + author_obj["links"] = author_links[new_name] + new_authors.append(author_obj) + data["info"]["author"] = new_authors + modified = True + print("✅ 替换为结构化 author") + + # 情况 2:列表类型,检查每个作者对象 + elif isinstance(author_field, list): + for author_obj in author_field: + if not isinstance(author_obj, dict): + continue + + name = author_obj.get("name") + if not name: + continue + + # 名字替换 + new_name = author_rename.get(name, name) + if name != new_name: + author_obj["name"] = new_name + modified = True + print(f"📝 重命名:{name} → {new_name}") + + # 找所有可能字段(link, url, links) + existing_link = author_obj.pop("link", None) or author_obj.pop("url", None) or author_obj.get("links") + + # 如果映射表有 → 使用 + if new_name in author_links: + if author_obj.get("links") != author_links[new_name]: + author_obj["links"] = author_links[new_name] + modified = True + print(f"🔧 更新链接:{new_name} → {author_links[new_name]}") + # 否则使用已有字段(如果没有 links) + elif "links" not in author_obj and existing_link: + author_obj["links"] = existing_link + modified = True + print(f"🔄 标准化已有链接字段为 links → {existing_link}") + + if modified: + with open(file_path, "w", encoding="utf-8") as f: + json.dump(data, f, ensure_ascii=False, indent=2) + count_modified += 1 + print("✅ 文件已保存") + else: + print("⏭️ 无需修改") + +print(f"\n🎉 全部完成:共检查 {count_total} 个文件,修改了 {count_modified} 个文件") \ No newline at end of file diff --git a/build/authors.py b/build/pathing_authors.py similarity index 100% rename from build/authors.py rename to build/pathing_authors.py diff --git a/repo/js/AEscoffier_chef/manifest.json b/repo/js/AEscoffier_chef/manifest.json index 72d8956c..bf5c6d4e 100644 --- a/repo/js/AEscoffier_chef/manifest.json +++ b/repo/js/AEscoffier_chef/manifest.json @@ -7,7 +7,7 @@ "authors": [ { "name": "提瓦特钓鱼玳师", - "url": "https://github.com/Hijiwos" + "links": "https://github.com/Hijiwos" } ], "settings_ui": "settings.json", diff --git a/repo/js/AllFowlTeyvat/manifest.json b/repo/js/AllFowlTeyvat/manifest.json index 4bc82193..6d975eac 100644 --- a/repo/js/AllFowlTeyvat/manifest.json +++ b/repo/js/AllFowlTeyvat/manifest.json @@ -6,7 +6,8 @@ "description": "脚本名称:禽肉全收集(提瓦特)\n功能描述:多种形式的提瓦特禽肉采集(下落攻击、战斗)\n核心功能------------------------------>\n1.刷取禽肉上限(目前路线不足)\n2.支持自行启用(禁用)下落(战斗)路线\n3.支持选择刷取鸟类(1禽肉、2禽肉、3禽肉)\n4.内置了4点的空月祝福检测(默认启用)\n注意事项------------------------------>\n1.包含下落路线时行走位建议角色为绮良良或埃洛伊(天赋不易惊动小动物)\n2.内置的空月祝福领取逻辑与JS脚本:提瓦特自动钓鱼(全流程+自选)一致\n---------------------------------------->\n作者:提瓦特钓鱼玳师\n脚本反馈邮箱:hijiwos@hotmail.com", "authors": [ { - "name": "提瓦特钓鱼玳师" + "name": "提瓦特钓鱼玳师", + "links": "https://github.com/Hijiwos" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoArtifactsPro/manifest.json b/repo/js/AutoArtifactsPro/manifest.json index 1bbedac3..f50eeb66 100644 --- a/repo/js/AutoArtifactsPro/manifest.json +++ b/repo/js/AutoArtifactsPro/manifest.json @@ -2,20 +2,29 @@ "manifest_version": 1, "name": "自动狗粮重制版", "version": "1.5.1", - "tags": ["好感", "盗宝团", "愚人众", "鳄鱼", "兽肉", "狗粮"], + "tags": [ + "好感", + "盗宝团", + "愚人众", + "鳄鱼", + "兽肉", + "狗粮" + ], "description": "通过不同好感任务卡时间后运行狗粮任务以提高狗粮总收益,需要正确配置好感队伍的战斗策略,并在自定义配置中指定好感和狗粮队伍名称", "authors": [ { - "name": "mno" + "name": "mno", + "links": "https://github.com/Bedrockx" }, { - "name": "秋云", - "links": "https://github.com/physligl" + "name": "秋云", + "links": "https://github.com/physligl" }, { - "name": "汐" + "name": "汐", + "links": "https://github.com/jiegedabaobei" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/AutoArtifactsSalvageOrDestroy(1-4star)/manifest.json b/repo/js/AutoArtifactsSalvageOrDestroy(1-4star)/manifest.json index 7dc72183..2d13535d 100644 --- a/repo/js/AutoArtifactsSalvageOrDestroy(1-4star)/manifest.json +++ b/repo/js/AutoArtifactsSalvageOrDestroy(1-4star)/manifest.json @@ -7,7 +7,7 @@ "authors": [ { "name": "24qiaoyue", - "link": "https://github.com/24qiaoyue" + "links": "https://github.com/24qiaoyue" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoArtifacts_A_B_Extra/manifest.json b/repo/js/AutoArtifacts_A_B_Extra/manifest.json index d5dad8ee..794afe5e 100644 --- a/repo/js/AutoArtifacts_A_B_Extra/manifest.json +++ b/repo/js/AutoArtifacts_A_B_Extra/manifest.json @@ -7,7 +7,7 @@ "authors": [ { "name": "Yang-z", - "link": "https://github.com/Yang-z" + "links": "https://github.com/Yang-z" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoCode/manifest.json b/repo/js/AutoCode/manifest.json index b609ada3..c7481f85 100644 --- a/repo/js/AutoCode/manifest.json +++ b/repo/js/AutoCode/manifest.json @@ -7,8 +7,8 @@ "authors": [ { "name": "Tool_tingsu", - "link": "" + "links": "https://github.com/Tooltingsu" } ], "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/AutoCommission/manifest.json b/repo/js/AutoCommission/manifest.json index a1c2426c..b8da540d 100644 --- a/repo/js/AutoCommission/manifest.json +++ b/repo/js/AutoCommission/manifest.json @@ -2,12 +2,18 @@ "manifest_version": 1, "name": "(对话+成就)全自动蒙德地区每日委托", "version": "0.97.2", - "tags": ["委托","对话","战斗","成就","历练点"], + "tags": [ + "委托", + "对话", + "战斗", + "成就", + "历练点" + ], "description": "自动完成每日委托、自动识别委托内容、自动追踪战斗委托、自动完成对话委托、自动获得到隐藏成就。使用前请阅读README.md(可用记事本打开)获取详细说明和常见问题解答。目前项目正处于开发阶段急需人手,有意者可加群1053392753(会启动js,发送文件即可)。每天只需花 5 ~ 10 分钟做一个蒙德城对话委托记下坐标,就当是顺路补下成就。感谢云闲vsv & 换苏伟u & 小鹰划船不用桨 & 塔台的共同开发", "authors": [ { "name": "星野", - "link": "https://github.com/LX666-666" + "links": "https://github.com/LX666-666" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoCrystalfly/manifest.json b/repo/js/AutoCrystalfly/manifest.json index e99c0bae..006757f3 100644 --- a/repo/js/AutoCrystalfly/manifest.json +++ b/repo/js/AutoCrystalfly/manifest.json @@ -5,8 +5,8 @@ "description": "BetterGI自带脚本,自动采集离传送点较近的晶蝶。请在队伍中务必携带早柚/瑶瑶,使用成男/成女角色。并保证所有传送点都已经激活!", "authors": [ { - "name": "huiyadanli", - "link": "https://github.com/huiyadanli" + "name": "huiyadanli", + "links": "https://github.com/huiyadanli" } ], "main": "main.js" diff --git a/repo/js/AutoDomain/manifest.json b/repo/js/AutoDomain/manifest.json index def20aab..4e3bf4f2 100644 --- a/repo/js/AutoDomain/manifest.json +++ b/repo/js/AutoDomain/manifest.json @@ -6,9 +6,9 @@ "authors": [ { "name": "huiyadanli&iris", - "link": "https://github.com/huiyadanli" + "links": "https://github.com/huiyadanli" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/AutoFightAsync/manifest.json b/repo/js/AutoFightAsync/manifest.json index af326591..aa7dc177 100644 --- a/repo/js/AutoFightAsync/manifest.json +++ b/repo/js/AutoFightAsync/manifest.json @@ -2,13 +2,15 @@ "manifest_version": 1, "name": "AutoFightAsync", "version": "1.0", - "bgi_version" : "0.34.6", + "bgi_version": "0.34.6", "description": "异步调用独立战斗任务,根据OCR结果判断战斗是否结束,不建议直接使用,仅供其他脚本作者参考", - "tags" : [ "示例" ], + "tags": [ + "示例" + ], "authors": [ { "name": "秋云", - "link": "https://github.com/phydligl" + "links": "https://github.com/physligl" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoFishingTeyvat/manifest.json b/repo/js/AutoFishingTeyvat/manifest.json index 4a92575c..c7c142aa 100644 --- a/repo/js/AutoFishingTeyvat/manifest.json +++ b/repo/js/AutoFishingTeyvat/manifest.json @@ -6,9 +6,10 @@ "description": "脚本名称:提瓦特自动钓鱼(全流程+自选)\n功能描述:支持自动追踪并垂钓bgi支持的全提瓦特垂钓点\n核心功能------------------------------>\n1.可自选地区、鱼类、鱼饵\n2.可直接钓取特定物品的兑换材料(例如渔获)\n3.脚本会根据需要的鱼类自动调节时间,不需要的时段会跳过\n4.支持部分地图追踪无法到达的钓鱼点(例如炽岩斗士急流鱼钓鱼点,枫丹廷东北钓鱼点、雷鸣仙垂钓点)\n5.支持从特定的垂钓点继续任务(仅启用所有垂钓点时可用)\n6.默认禁用需要战斗的路线,如有需要请在JS脚本配置内启用\n7.支持自定义钓鱼超时时间\n8.支持设置定时关闭(最多24小时)\n9.4点自动领取月卡(可选)\n10.启用自动拾取(可选)\n注意事项------------------------------>\n1.部分点位涉及战斗,且队伍内不能有双风和跑步(不是冲刺)时加移速的角色\n2.跑图位必须是少男体型(防止键鼠路线[GCM]出错)\n3.同时选择鱼类和鱼饵的情况下按照以下逻辑选择路线: 所有被选的鱼类会被加入任务列表,如果选择的鱼饵中某个鱼饵不是已选的任何一个鱼类的对应的鱼饵,那么这个鱼饵对应的所有鱼类将被添加到任务列表\n4.JS脚本的设置内各设置项含有优先级,如果存在高优先级且选项不为默认,则只有最高优先级的设置项生效\n5.部分钓鱼点为路径追踪+键鼠脚本(GCM)的混合模式,可能会出现因键鼠脚本误差卡死的情况,如果出现这种情况,请在JS脚本设置禁用键鼠路线来禁用所有包含键鼠脚本的钓鱼点\n---------------------------------------->\n作者:提瓦特钓鱼玳师\n脚本反馈邮箱:hijiwos@hotmail.com", "authors": [ { - "name": "提瓦特钓鱼玳师" + "name": "提瓦特钓鱼玳师", + "links": "https://github.com/Hijiwos" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/AutoFontaineLeyLine/manifest.json b/repo/js/AutoFontaineLeyLine/manifest.json index 05fbade6..b1c31c2e 100644 --- a/repo/js/AutoFontaineLeyLine/manifest.json +++ b/repo/js/AutoFontaineLeyLine/manifest.json @@ -4,22 +4,25 @@ "version": "3.1", "bgi_version": "0.44.8", "description": "枫丹地脉花,蓝花金花通用。生存压力大,请带盾奶;避免纯水输出,请注意说明文件。如有BUG请联系作者QQ:119996800", - "tags":["地脉花"], + "tags": [ + "地脉花" + ], "authors": [ { - "name": "LCB-茶包" + "name": "LCB-茶包", + "links": "https://github.com/kaedelcb" }, { "name": "ddaodan", - "link": "https://github.com/ddaodan" + "links": "https://github.com/ddaodan" }, { "name": "平面镜", - "link": "https://github.com/Flatmirrr" + "links": "https://github.com/Flatmirrr" }, { "name": "秋云", - "link": "https://github.com/physligl" + "links": "https://github.com/physligl" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoLeyLineOutcrop/manifest.json b/repo/js/AutoLeyLineOutcrop/manifest.json index c5f26baf..b296ee4f 100644 --- a/repo/js/AutoLeyLineOutcrop/manifest.json +++ b/repo/js/AutoLeyLineOutcrop/manifest.json @@ -1,37 +1,38 @@ { - "manifest_version": 1, - "name": "全自动地脉花", - "version": "4.0.1", - "tags": ["地脉花"], - "bgi_version": "0.44.7", - "description": "基于OCR图像识别的全自动刷取地脉花。\n💡更多信息请查看在线手册:https://hcnsvf0s8d0s.feishu.cn/wiki/Tb1twpThLi7UlykqcYOcuccTnjJ \n\n----------注意事项----------\n●仅支持BetterGI 0.44.7 及以上版本!\n●部分地脉花因特殊原因不支持全自动,具体的点位请在手册中查看。\n●树脂使用的优先级:2倍原粹树脂 > 浓缩树脂 > 原粹树脂。\n●运行时会传送到七天神像设置中设置的七天神像,需要关闭七天神像设置中的“是否就近七天神像恢复血量”,并指定七天神像。\n●战斗策略注意调度器设置中地图追踪行走配置里的“允许在JsSpript中使用”和“覆盖JS中的自动战斗配置”,只有在都打开的情况下脚本才会使用下面的战斗配置,否则会使用独立任务中的战斗策略。战斗超时时间不能大于脚本自定义配置中的时间。\n\n如果遇到问题,请先参照手册中的方法进行解决。", - "authors": [ - { - "name": "ddaodan", - "link": "https://github.com/ddaodan" - }, - { - "name": "平面镜", - "link": "https://github.com/Flatmirrr" - }, - { - "name": "秋云", - "link": "https://github.com/physligl" - }, - { - "name": "起个名字好难的喵", - "link": "https://github.com/MisakaAldrich" - }, - { - "name": "火山", - "link": "https://github.com/RRRR623" - }, - { - "name": "寒烟", - "link": "https://github.com/214-hanyan" - } - ], - "settings_ui": "settings.json", - "main": "main.js" - } - \ No newline at end of file + "manifest_version": 1, + "name": "全自动地脉花", + "version": "4.0.1", + "tags": [ + "地脉花" + ], + "bgi_version": "0.44.7", + "description": "基于OCR图像识别的全自动刷取地脉花。\n💡更多信息请查看在线手册:https://hcnsvf0s8d0s.feishu.cn/wiki/Tb1twpThLi7UlykqcYOcuccTnjJ \n\n----------注意事项----------\n●仅支持BetterGI 0.44.7 及以上版本!\n●部分地脉花因特殊原因不支持全自动,具体的点位请在手册中查看。\n●树脂使用的优先级:2倍原粹树脂 > 浓缩树脂 > 原粹树脂。\n●运行时会传送到七天神像设置中设置的七天神像,需要关闭七天神像设置中的“是否就近七天神像恢复血量”,并指定七天神像。\n●战斗策略注意调度器设置中地图追踪行走配置里的“允许在JsSpript中使用”和“覆盖JS中的自动战斗配置”,只有在都打开的情况下脚本才会使用下面的战斗配置,否则会使用独立任务中的战斗策略。战斗超时时间不能大于脚本自定义配置中的时间。\n\n如果遇到问题,请先参照手册中的方法进行解决。", + "authors": [ + { + "name": "ddaodan", + "links": "https://github.com/ddaodan" + }, + { + "name": "平面镜", + "links": "https://github.com/Flatmirrr" + }, + { + "name": "秋云", + "links": "https://github.com/physligl" + }, + { + "name": "起个名字好难的喵", + "links": "https://github.com/MisakaAldrich" + }, + { + "name": "火山", + "links": "https://github.com/RRRR623" + }, + { + "name": "寒烟", + "links": "https://github.com/214-hanyan" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/AutoNobushi/manifest.json b/repo/js/AutoNobushi/manifest.json index dd5750cb..984eac84 100644 --- a/repo/js/AutoNobushi/manifest.json +++ b/repo/js/AutoNobushi/manifest.json @@ -6,9 +6,10 @@ "description": "脚本名称:野伏众(全流程+自选)[自动拾取]\n功能描述:包含全图野伏众自动追踪路径、支持自主筛选路径\n核心功能------------------------------>\n1.根据路径点包含的野伏众数量筛选,通过选择最小值和最大值确定区间\n2.支持手动排除不想刷取的区域\n3.每次路径执行结束后显示刷取进度\n注意事项------------------------------>\n1.在设置脚本配置的'限制路径点包含的野伏众数量'时,应当确保'最小值'小于'最大值'\n2.避免使用位移距离较大的角色,以免意外掉出路径(跳崖or跳水)\n3.设置中的'延迟启动'指的是脚本在开始执行前的等待时间,用于再次确认配置是否正确\n---------------------------------------->\n版本:ver1.0\n作者:提瓦特钓鱼玳师\n脚本反馈邮箱:hijiwos@hotmail.com", "authors": [ { - "name": "提瓦特钓鱼玳师" + "name": "提瓦特钓鱼玳师", + "links": "https://github.com/Hijiwos" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/AutoProcess/manifest.json b/repo/js/AutoProcess/manifest.json index ab7c4403..614f1f29 100644 --- a/repo/js/AutoProcess/manifest.json +++ b/repo/js/AutoProcess/manifest.json @@ -6,7 +6,7 @@ "authors": [ { "name": "听雨♪", - "link": "https://github.com/TingYu-lulumi" + "links": "https://github.com/TingYu-lulumi" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoSereniteaPot/manifest.json b/repo/js/AutoSereniteaPot/manifest.json index 417ebcc2..740f9100 100644 --- a/repo/js/AutoSereniteaPot/manifest.json +++ b/repo/js/AutoSereniteaPot/manifest.json @@ -6,9 +6,9 @@ "authors": [ { "name": "bling-yshs", - "link": "https://github.com/bling-yshs" + "links": "https://github.com/bling-yshs" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/AutoSmithyOre/manifest.json b/repo/js/AutoSmithyOre/manifest.json index ddbd8a2a..4496ed0a 100644 --- a/repo/js/AutoSmithyOre/manifest.json +++ b/repo/js/AutoSmithyOre/manifest.json @@ -6,7 +6,7 @@ "authors": [ { "name": "寒露", - "link": "https://github.com/lwwens" + "links": "https://github.com/lwwens" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoStygianOnslaught/manifest.json b/repo/js/AutoStygianOnslaught/manifest.json index ba4fe049..8756bd89 100644 --- a/repo/js/AutoStygianOnslaught/manifest.json +++ b/repo/js/AutoStygianOnslaught/manifest.json @@ -2,14 +2,17 @@ "manifest_version": 1, "name": "自动幽境危战", "version": "1.6", - "tags": ["幽境危战"], + "tags": [ + "幽境危战" + ], "bgi_version": "0.44.8", "description": "请先配置好秘境内的队伍,幽境危战战斗失败或执行错误会重试一次,请保证队伍实力", "authors": [ { - "name": "LCB-茶包" + "name": "LCB-茶包", + "links": "https://github.com/kaedelcb" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/AutoSwitchRoles/manifest.json b/repo/js/AutoSwitchRoles/manifest.json index 735c6be8..58fe9e1b 100644 --- a/repo/js/AutoSwitchRoles/manifest.json +++ b/repo/js/AutoSwitchRoles/manifest.json @@ -7,9 +7,9 @@ "authors": [ { "name": "Tool_tingsu", - "link": "" + "links": "https://github.com/Tooltingsu" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/AutoTranscribePathing/manifest.json b/repo/js/AutoTranscribePathing/manifest.json index 4f5ea25c..64a81ad4 100644 --- a/repo/js/AutoTranscribePathing/manifest.json +++ b/repo/js/AutoTranscribePathing/manifest.json @@ -11,7 +11,7 @@ "authors": [ { "name": "星野", - "link": "https://github.com/LX666-666" + "links": "https://github.com/LX666-666" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoWoodcutting/manifest.json b/repo/js/AutoWoodcutting/manifest.json index 4ee5e528..9da68c9e 100644 --- a/repo/js/AutoWoodcutting/manifest.json +++ b/repo/js/AutoWoodcutting/manifest.json @@ -5,10 +5,11 @@ "description": "前往并自动伐木", "authors": [ { - "name": "愚溪" + "name": "愚溪" }, { - "name": "½" + "name": "½", + "links": "https://github.com/Traveler07" } ], "settings_ui": "settings.json", diff --git a/repo/js/AutoYuanQin/manifest.json b/repo/js/AutoYuanQin/manifest.json index 9734e823..2b7f0371 100644 --- a/repo/js/AutoYuanQin/manifest.json +++ b/repo/js/AutoYuanQin/manifest.json @@ -7,9 +7,9 @@ "authors": [ { "name": "提瓦特钓鱼玳师", - "url": "https://github.com/Hijiwos" + "links": "https://github.com/Hijiwos" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/Autopermission/manifest.json b/repo/js/Autopermission/manifest.json index 717277f7..b228819c 100644 --- a/repo/js/Autopermission/manifest.json +++ b/repo/js/Autopermission/manifest.json @@ -5,7 +5,8 @@ "description": "设置进入世界的权限,默认锁门", "authors": [ { - "name": "½" + "name": "½", + "links": "https://github.com/Traveler07" } ], "settings_ui": "settings.json", diff --git a/repo/js/CD-Aware-AutoGather/manifest.json b/repo/js/CD-Aware-AutoGather/manifest.json index 44648bb9..07f3f1e4 100644 --- a/repo/js/CD-Aware-AutoGather/manifest.json +++ b/repo/js/CD-Aware-AutoGather/manifest.json @@ -1,15 +1,15 @@ { - "manifest_version": 1, - "name": "带CD管理的自动采集", - "version": "1.4", - "bgi_version": "0.45.0", - "description": "自动同步你通过BetterGI订阅的地图追踪任务,执行采集任务,并管理材料刷新时间(支持多账号)。\n首次使用前请先简单阅读说明(可在`全自动`——`JS脚本`页面,点击本脚本名称查看)", - "authors": [ - { - "name": "Ayaka-Main", - "link": "https://github.com/Patrick-Ze" - } - ], - "settings_ui": "settings.json", - "main": "main.js" + "manifest_version": 1, + "name": "带CD管理的自动采集", + "version": "1.4", + "bgi_version": "0.45.0", + "description": "自动同步你通过BetterGI订阅的地图追踪任务,执行采集任务,并管理材料刷新时间(支持多账号)。\n首次使用前请先简单阅读说明(可在`全自动`——`JS脚本`页面,点击本脚本名称查看)", + "authors": [ + { + "name": "Ayaka-Main", + "links": "https://github.com/Patrick-Ze" + } + ], + "settings_ui": "settings.json", + "main": "main.js" } \ No newline at end of file diff --git a/repo/js/Collect Dongtian Xuyu Resin/manifest.json b/repo/js/Collect Dongtian Xuyu Resin/manifest.json index 664fd4fa..178d9c3d 100644 --- a/repo/js/Collect Dongtian Xuyu Resin/manifest.json +++ b/repo/js/Collect Dongtian Xuyu Resin/manifest.json @@ -5,7 +5,8 @@ "description": "领取洞天须臾树脂", "authors": [ { - "name": "风埠" + "name": "风埠", + "links": "https://github.com/jhkif" } ], "main": "main.js" diff --git a/repo/js/CrystalflyTrap/manifest.json b/repo/js/CrystalflyTrap/manifest.json index 47ee67cb..9c5c8b4b 100644 --- a/repo/js/CrystalflyTrap/manifest.json +++ b/repo/js/CrystalflyTrap/manifest.json @@ -1,16 +1,15 @@ { - "manifest_version": 1, - "name": "晶蝶诱捕装置", - "version": "2.0", - "bgi_version": "0.44.3", - "description": "自动放置和收集晶蝶诱捕装置。\n\n----------使用说明----------\n●BetterGI 版本必须大于0.44.3,低于此版本无法使用!\n●请确保背包内有「晶蝶诱捕装置」。\n●晶蝶诱捕装置放在枫丹冒险家协会锚点。\n●请确保背包内所选择的矿石数量大于30个。\n●请勿修改\"status.json\"文件,里面保存的是收集奖励的时间,否则将无法通过脚本领取晶核!\n\n----------更新说明----------\n●2.0版本改用json储存时间,如果你的晶核还没领取,请打开脚本所在的文件夹,复制\"time.txt\"中的所有内容,粘贴到\"status.json\"中\"collectionTime\": 后面(要把原来的0删掉!),并将false改为true。", - "authors": [ - { - "name": "ddaodan", - "link": "https://github.com/ddaodan" - } - ], - "settings_ui": "settings.json", - "main": "main.js" - } - \ No newline at end of file + "manifest_version": 1, + "name": "晶蝶诱捕装置", + "version": "2.0", + "bgi_version": "0.44.3", + "description": "自动放置和收集晶蝶诱捕装置。\n\n----------使用说明----------\n●BetterGI 版本必须大于0.44.3,低于此版本无法使用!\n●请确保背包内有「晶蝶诱捕装置」。\n●晶蝶诱捕装置放在枫丹冒险家协会锚点。\n●请确保背包内所选择的矿石数量大于30个。\n●请勿修改\"status.json\"文件,里面保存的是收集奖励的时间,否则将无法通过脚本领取晶核!\n\n----------更新说明----------\n●2.0版本改用json储存时间,如果你的晶核还没领取,请打开脚本所在的文件夹,复制\"time.txt\"中的所有内容,粘贴到\"status.json\"中\"collectionTime\": 后面(要把原来的0删掉!),并将false改为true。", + "authors": [ + { + "name": "ddaodan", + "links": "https://github.com/ddaodan" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/EscofierKitchenContraption/manifest.json b/repo/js/EscofierKitchenContraption/manifest.json index c59da212..1c43cded 100644 --- a/repo/js/EscofierKitchenContraption/manifest.json +++ b/repo/js/EscofierKitchenContraption/manifest.json @@ -4,10 +4,13 @@ "version": "1.3", "bgi_version": "0.44.0", "description": "爱可菲厨艺机关自动化,请注意说明文件,如有BUG请联系作者QQ:119996800", - "tags": ["爱可菲"], + "tags": [ + "爱可菲" + ], "authors": [ { - "name": "LCB-茶包" + "name": "LCB-茶包", + "links": "https://github.com/kaedelcb" } ], "settings_ui": "settings.json", diff --git a/repo/js/ExitGame/manifest.json b/repo/js/ExitGame/manifest.json index da3209d2..048fe30b 100644 --- a/repo/js/ExitGame/manifest.json +++ b/repo/js/ExitGame/manifest.json @@ -6,7 +6,7 @@ "authors": [ { "name": "Because", - "link": "https://github.com/Because66666" + "links": "https://github.com/Because66666" } ], "main": "main.js" diff --git a/repo/js/ExitGametoDesktop/manifest.json b/repo/js/ExitGametoDesktop/manifest.json index 5df277e0..97e4beed 100644 --- a/repo/js/ExitGametoDesktop/manifest.json +++ b/repo/js/ExitGametoDesktop/manifest.json @@ -6,8 +6,8 @@ "authors": [ { "name": "MeisterJ", - "link": "https://github.com/MeisterJ" + "links": "https://github.com/MeisterJ" } ], "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/FeatherFalling/manifest.json b/repo/js/FeatherFalling/manifest.json index fa896699..6d657b83 100644 --- a/repo/js/FeatherFalling/manifest.json +++ b/repo/js/FeatherFalling/manifest.json @@ -6,7 +6,7 @@ "authors": [ { "name": "秋云", - "link": "https://github.com/physligl" + "links": "https://github.com/physligl" } ], "settings_ui": "settings.json", diff --git a/repo/js/FollowsPet/manifest.json b/repo/js/FollowsPet/manifest.json index be2a8629..d7aa5a2e 100644 --- a/repo/js/FollowsPet/manifest.json +++ b/repo/js/FollowsPet/manifest.json @@ -8,7 +8,7 @@ "authors": [ { "name": "ftnfurina", - "link": "https://github.com/ftnfurina" + "links": "https://github.com/ftnfurina" } ] -} +} \ No newline at end of file diff --git a/repo/js/FurinaSalonSolitaireOusiaDefeatLocalLegend/manifest.json b/repo/js/FurinaSalonSolitaireOusiaDefeatLocalLegend/manifest.json index c1e5be92..0efa9080 100644 --- a/repo/js/FurinaSalonSolitaireOusiaDefeatLocalLegend/manifest.json +++ b/repo/js/FurinaSalonSolitaireOusiaDefeatLocalLegend/manifest.json @@ -1,15 +1,15 @@ { - "manifest_version": 1, - "name": "芙芙挂机暗杀流", - "version": "1.0", - "bgi_version": "0.37.2", - "description": "", - "authors": [ - { - "name": "起个名字好难的喵", - "link": "https://github.com/MisakaAldrich" - } - ], - "settings_ui": "settings.json", - "main": "main.js" -} + "manifest_version": 1, + "name": "芙芙挂机暗杀流", + "version": "1.0", + "bgi_version": "0.37.2", + "description": "", + "authors": [ + { + "name": "起个名字好难的喵", + "links": "https://github.com/MisakaAldrich" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/JoinFriendsWorld/manifest.json b/repo/js/JoinFriendsWorld/manifest.json index 6d75b0ed..8ce2cb68 100644 --- a/repo/js/JoinFriendsWorld/manifest.json +++ b/repo/js/JoinFriendsWorld/manifest.json @@ -8,7 +8,7 @@ "authors": [ { "name": "ftnfurina", - "link": "https://github.com/ftnfurina" + "links": "https://github.com/ftnfurina" } ] -} +} \ No newline at end of file diff --git a/repo/js/OCR切换武器/manifest.json b/repo/js/OCR切换武器/manifest.json index 34e4a960..f7e7cd0a 100644 --- a/repo/js/OCR切换武器/manifest.json +++ b/repo/js/OCR切换武器/manifest.json @@ -5,7 +5,8 @@ "description": "OCR。默认四行为一页;v2.1增加模糊匹配,增加别名匹配。v2.22兼容未知角色、未知武器", "authors": [ { - "name": "吉吉喵" + "name": "吉吉喵", + "links": "https://github.com/JJMdzh" } ], "settings_ui": "settings.json", diff --git a/repo/js/OCR读取当前摩拉记录并发送通知/manifest.json b/repo/js/OCR读取当前摩拉记录并发送通知/manifest.json index 245790b9..73c5ff8e 100644 --- a/repo/js/OCR读取当前摩拉记录并发送通知/manifest.json +++ b/repo/js/OCR读取当前摩拉记录并发送通知/manifest.json @@ -5,7 +5,8 @@ "description": "至少0.44.3版本。OCR识别摩拉数值输出到本地", "authors": [ { - "name": "吉吉喵" + "name": "吉吉喵", + "links": "https://github.com/JJMdzh" } ], "settings_ui": "settings.json", diff --git a/repo/js/OCR购买食材/manifest.json b/repo/js/OCR购买食材/manifest.json index b26b5350..d90099aa 100644 --- a/repo/js/OCR购买食材/manifest.json +++ b/repo/js/OCR购买食材/manifest.json @@ -5,9 +5,10 @@ "description": "至少需要0.44版本bgi,对NPC和材料进行文字、图像识别。\n一般食材杂货在蒙德、璃月、稻妻、枫丹杂货商购买。\n10鱼肉、10螃蟹在卯师傅、珀姆、布特罗斯、阿扎莱和志村勘兵卫购买。\n咖啡豆在须弥、枫丹咖啡馆购买。\n增加对话F图像识别,增加个别字识别容错;增加香辛料,在阿扎莱处购买。\nv1.30513修复循环套叠,优化F未识别后的尝试方案。", "authors": [ { - "name": "吉吉喵" + "name": "吉吉喵", + "links": "https://github.com/JJMdzh" } ], "settings_ui": "settings.json", "main": "main.js" - } \ No newline at end of file +} \ No newline at end of file diff --git a/repo/js/OcrMonsterNum/manifest.json b/repo/js/OcrMonsterNum/manifest.json index f52b23eb..a61a51c9 100644 --- a/repo/js/OcrMonsterNum/manifest.json +++ b/repo/js/OcrMonsterNum/manifest.json @@ -7,7 +7,7 @@ "authors": [ { "name": "Tool_tingsu", - "link": "" + "links": "https://github.com/Tooltingsu" } ], "settings_ui": "settings.json", diff --git a/repo/js/OnlineHoeing/manifest.json b/repo/js/OnlineHoeing/manifest.json index 3bb10465..529d8db4 100644 --- a/repo/js/OnlineHoeing/manifest.json +++ b/repo/js/OnlineHoeing/manifest.json @@ -7,7 +7,7 @@ "authors": [ { "name": "提瓦特钓鱼玳师", - "url": "https://github.com/Hijiwos" + "links": "https://github.com/Hijiwos" } ], "settings_ui": "settings.json", diff --git a/repo/js/ParametricTrans/manifest.json b/repo/js/ParametricTrans/manifest.json index 223d1ea6..554d22e7 100644 --- a/repo/js/ParametricTrans/manifest.json +++ b/repo/js/ParametricTrans/manifest.json @@ -4,10 +4,13 @@ "version": "1.3", "bgi_version": "0.44.0", "description": "参量质变仪自动化,请注意说明文件,如有BUG请联系作者QQ:119996800", - "tags":["参量质变仪"], + "tags": [ + "参量质变仪" + ], "authors": [ { - "name": "LCB-茶包" + "name": "LCB-茶包", + "links": "https://github.com/kaedelcb" } ], "settings_ui": "settings.json", diff --git a/repo/js/PathMoraLogger路径摩拉记录/manifest.json b/repo/js/PathMoraLogger路径摩拉记录/manifest.json index a55445f5..61db650b 100644 --- a/repo/js/PathMoraLogger路径摩拉记录/manifest.json +++ b/repo/js/PathMoraLogger路径摩拉记录/manifest.json @@ -5,7 +5,8 @@ "description": "用于测试路线的摩拉效率,要求bgi版本不低于44.8", "authors": [ { - "name": "mno" + "name": "mno", + "links": "https://github.com/Bedrockx" } ], "settings_ui": "settings.json", diff --git a/repo/js/PurchaseArtifacts/manifest.json b/repo/js/PurchaseArtifacts/manifest.json index f04721ff..b26d435f 100644 --- a/repo/js/PurchaseArtifacts/manifest.json +++ b/repo/js/PurchaseArtifacts/manifest.json @@ -6,10 +6,10 @@ "description": "狗粮周3刷新,价值23体力的摩拉换38体力的狗粮,血赚。龙骨花凝珠没出售,需额外设置。强烈建议使用固定队伍(双风成女行走)", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/QuickSwapGadgets/manifest.json b/repo/js/QuickSwapGadgets/manifest.json index 1f33400e..60535576 100644 --- a/repo/js/QuickSwapGadgets/manifest.json +++ b/repo/js/QuickSwapGadgets/manifest.json @@ -6,9 +6,9 @@ "authors": [ { "name": "Ayaka-Main", - "link": "https://github.com/Patrick-Ze" + "links": "https://github.com/Patrick-Ze" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/RecognitionDemo/manifest.json b/repo/js/RecognitionDemo/manifest.json index a93de42d..e9849188 100644 --- a/repo/js/RecognitionDemo/manifest.json +++ b/repo/js/RecognitionDemo/manifest.json @@ -5,8 +5,8 @@ "description": "图像识别demo", "authors": [ { - "name": "huiyadanli", - "link": "https://github.com/huiyadanli" + "name": "huiyadanli", + "links": "https://github.com/huiyadanli" } ], "main": "main.js" diff --git a/repo/js/SetTimeMinute/manifest.json b/repo/js/SetTimeMinute/manifest.json index 1698da8d..60cc2ebd 100644 --- a/repo/js/SetTimeMinute/manifest.json +++ b/repo/js/SetTimeMinute/manifest.json @@ -6,9 +6,10 @@ "description": "用于调整游戏时间,精确到分钟,请在调度器中使用", "authors": [ { - "name": "Tim" + "name": "Tim", + "links": "https://github.com/Limint" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/TeyvatScanner/manifest.json b/repo/js/TeyvatScanner/manifest.json index ff80eb8e..c8bd103c 100644 --- a/repo/js/TeyvatScanner/manifest.json +++ b/repo/js/TeyvatScanner/manifest.json @@ -1,16 +1,18 @@ { - "manifest_version": 1, - "name": "提瓦特扫描仪", - "version": "0.1", - "tags": ["宝箱"], - "bgi_version": "0.46.0", - "description": "通过使用寻宝罗盘,判断指定区域是否存在宝藏并进行记录,同时根据记录,将用户导航至找到宝藏的地点,建议配合“罗盘找不到的宝箱”视频食用", - "authors": [ - { - "name": "mno" - } - ], - "settings_ui": "settings.json", - "main": "main.js" - } - \ No newline at end of file + "manifest_version": 1, + "name": "提瓦特扫描仪", + "version": "0.1", + "tags": [ + "宝箱" + ], + "bgi_version": "0.46.0", + "description": "通过使用寻宝罗盘,判断指定区域是否存在宝藏并进行记录,同时根据记录,将用户导航至找到宝藏的地点,建议配合“罗盘找不到的宝箱”视频食用", + "authors": [ + { + "name": "mno", + "links": "https://github.com/Bedrockx" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/Tool_mint/manifest.json b/repo/js/Tool_mint/manifest.json index fc7a4746..3c1e3725 100644 --- a/repo/js/Tool_mint/manifest.json +++ b/repo/js/Tool_mint/manifest.json @@ -7,7 +7,7 @@ "authors": [ { "name": "Tool_tingsu", - "link": "" + "links": "https://github.com/Tooltingsu" } ], "settings_ui": "settings.json", diff --git a/repo/js/TravelersTales/manifest.json b/repo/js/TravelersTales/manifest.json index 340c2114..cc2de969 100644 --- a/repo/js/TravelersTales/manifest.json +++ b/repo/js/TravelersTales/manifest.json @@ -7,13 +7,15 @@ "authors": [ { "name": "ddaodan", - "link": "https://github.com/ddaodan" + "links": "https://github.com/ddaodan" }, { - "name": "秋云" + "name": "秋云", + "links": "https://github.com/physligl" }, { - "name": "mno" + "name": "mno", + "links": "https://github.com/Bedrockx" } ], "settings_ui": "settings.json", diff --git a/repo/js/YuanQin/manifest.json b/repo/js/YuanQin/manifest.json index d6705f81..42fd6de7 100644 --- a/repo/js/YuanQin/manifest.json +++ b/repo/js/YuanQin/manifest.json @@ -5,8 +5,8 @@ "description": "原神琴谱自动弹奏脚本,通过读取本地琴谱文件,解析成乐谱对象,然后模拟键盘操作,实现自动弹奏。(需角色手动提前乐器)", "authors": [ { - "name": "阿城同学", - "link": "https://github.com/shilic" + "name": "阿城同学", + "links": "https://github.com/shilic" } ], "settings_ui": "settings.json", diff --git a/repo/js/一条龙领奖无树脂(用于周本、首领刷取)+尘歌壶/manifest.json b/repo/js/一条龙领奖无树脂(用于周本、首领刷取)+尘歌壶/manifest.json index fa48ad1d..5a1ff91e 100644 --- a/repo/js/一条龙领奖无树脂(用于周本、首领刷取)+尘歌壶/manifest.json +++ b/repo/js/一条龙领奖无树脂(用于周本、首领刷取)+尘歌壶/manifest.json @@ -5,10 +5,10 @@ "description": "完成周本或首领讨伐等不使用浓缩树脂的副本挑战后,切换好感队前往凯瑟琳领奖、派遣、纪行、尘歌壶。如果是周一会在尘歌壶自动购买树脂", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/七圣召唤七日历练全自动/manifest.json b/repo/js/七圣召唤七日历练全自动/manifest.json index 737fe0f4..01ad9226 100644 --- a/repo/js/七圣召唤七日历练全自动/manifest.json +++ b/repo/js/七圣召唤七日历练全自动/manifest.json @@ -6,9 +6,9 @@ "authors": [ { "name": "柒叶子", - "link": "https://github.com/5117600049" + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/七圣召唤角色邀约全自动/manifest.json b/repo/js/七圣召唤角色邀约全自动/manifest.json index 76f6c367..11267490 100644 --- a/repo/js/七圣召唤角色邀约全自动/manifest.json +++ b/repo/js/七圣召唤角色邀约全自动/manifest.json @@ -5,8 +5,8 @@ "description": "挑战前请选好卡组并设好js脚本参数,最少持有一张邀请函或1000牌币!!!", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", diff --git a/repo/js/买菜/manifest.json b/repo/js/买菜/manifest.json index bbe35a03..704655a1 100644 --- a/repo/js/买菜/manifest.json +++ b/repo/js/买菜/manifest.json @@ -6,7 +6,7 @@ "authors": [ { "name": "听雨♪", - "link": "https://github.com/TingYu-lulumi" + "links": "https://github.com/TingYu-lulumi" } ], "settings_ui": "settings.json", diff --git a/repo/js/使用料理/manifest.json b/repo/js/使用料理/manifest.json index 33a67f1b..fedbd84d 100644 --- a/repo/js/使用料理/manifest.json +++ b/repo/js/使用料理/manifest.json @@ -5,10 +5,10 @@ "description": "请输入料理全部名称,需要0.44.6以及以上版本", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/使用脆弱树脂/manifest.json b/repo/js/使用脆弱树脂/manifest.json index 1a1f8f77..227538a4 100644 --- a/repo/js/使用脆弱树脂/manifest.json +++ b/repo/js/使用脆弱树脂/manifest.json @@ -1,15 +1,15 @@ { "manifest_version": 1, - "name": "使用脆弱树脂(图像识别)", - "version": "1.1", - "bgi_version": "0.44.6", - "description": "", + "name": "使用脆弱树脂(图像识别)", + "version": "1.1", + "bgi_version": "0.44.6", + "description": "", "authors": [ { "name": "起个名字好难的喵", - "link": "https://github.com/MisakaAldrich" + "links": "https://github.com/MisakaAldrich" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/全队自动回满大招能量/manifest.json b/repo/js/全队自动回满大招能量/manifest.json index d3ac2982..b0c0eb3e 100644 --- a/repo/js/全队自动回满大招能量/manifest.json +++ b/repo/js/全队自动回满大招能量/manifest.json @@ -5,10 +5,10 @@ "description": "需要开启蒙德武器副本,可选择指定队伍", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/切换主角元素/manifest.json b/repo/js/切换主角元素/manifest.json index 2812c405..0cc8b20b 100644 --- a/repo/js/切换主角元素/manifest.json +++ b/repo/js/切换主角元素/manifest.json @@ -5,9 +5,10 @@ "description": "", "authors": [ { - "name": "mno" + "name": "mno", + "links": "https://github.com/Bedrockx" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/切换画质/manifest.json b/repo/js/切换画质/manifest.json index b0a6cc8a..452f5a70 100644 --- a/repo/js/切换画质/manifest.json +++ b/repo/js/切换画质/manifest.json @@ -5,7 +5,8 @@ "description": "0.6或1.0精度切换,增加识图定位,增加画质、动态模糊、Bloom选项,", "authors": [ { - "name": "吉吉喵" + "name": "吉吉喵", + "links": "https://github.com/JJMdzh" } ], "settings_ui": "settings.json", diff --git a/repo/js/切换账号(OCR)版本/manifest.json b/repo/js/切换账号(OCR)版本/manifest.json index 919c7b3f..2b6c40b1 100644 --- a/repo/js/切换账号(OCR)版本/manifest.json +++ b/repo/js/切换账号(OCR)版本/manifest.json @@ -6,9 +6,10 @@ "authors": [ { "name": "彩虹QQ人", - "email": "846224811@qq.com" + "email": "846224811@qq.com", + "links": "https://github.com/KRdingsan" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/切换账号(非OCR)版本/manifest.json b/repo/js/切换账号(非OCR)版本/manifest.json index b4a89826..6314a632 100644 --- a/repo/js/切换账号(非OCR)版本/manifest.json +++ b/repo/js/切换账号(非OCR)版本/manifest.json @@ -6,7 +6,8 @@ "authors": [ { "name": "彩虹QQ人", - "email": "846224811@qq.com" + "email": "846224811@qq.com", + "links": "https://github.com/KRdingsan" } ], "settings_ui": "settings.json", diff --git a/repo/js/周本1-王狼/manifest.json b/repo/js/周本1-王狼/manifest.json index 81285fa2..0352eaf4 100644 --- a/repo/js/周本1-王狼/manifest.json +++ b/repo/js/周本1-王狼/manifest.json @@ -5,8 +5,8 @@ "description": "建议钟离、芙芙和优质后台(精通雷神、草神等),另外看情况更改自动战斗的超时时间", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", diff --git a/repo/js/周本10-仆人/manifest.json b/repo/js/周本10-仆人/manifest.json index e38c0915..eaf1279d 100644 --- a/repo/js/周本10-仆人/manifest.json +++ b/repo/js/周本10-仆人/manifest.json @@ -5,10 +5,10 @@ "description": "需0.44.6及以上版本,兼容所有正常队伍及战斗策略,但还是建议在JS设置中选择合适的防御料理(推荐骇浪派)。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本原地版q是14s,看情况可以多加一秒,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。演示视频https://www.bilibili.com/video/BV1cpGCz6EWN/?vd_source=9dfaf88af48ecc0ff95a41f1145af7a2。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/周本11-火龙/manifest.json b/repo/js/周本11-火龙/manifest.json index 468f77b2..85cf75ef 100644 --- a/repo/js/周本11-火龙/manifest.json +++ b/repo/js/周本11-火龙/manifest.json @@ -5,8 +5,8 @@ "description": "需0.44.6及以上版本,兼容所有正常队伍及战斗策略(队伍中必须有奶妈),但还是建议在JS设置中选择合适的防御料理(生命料理以及火抗药剂,没错侵蚀效果吃火抗,我自己发现的)。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本原地版q是14s,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", diff --git a/repo/js/周本12-魔女/manifest.json b/repo/js/周本12-魔女/manifest.json index d9177ee6..72d177f7 100644 --- a/repo/js/周本12-魔女/manifest.json +++ b/repo/js/周本12-魔女/manifest.json @@ -5,8 +5,8 @@ "description": "需0.44.6及以上版本,兼容所有正常队伍(必须要有冻结反应)及战斗策略,但还是建议在JS设置中选择合适的防御料理(推荐骇浪派)。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本队厨神版是14s,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", diff --git a/repo/js/周本2-风魔龙/manifest.json b/repo/js/周本2-风魔龙/manifest.json index b7001772..c9263ff4 100644 --- a/repo/js/周本2-风魔龙/manifest.json +++ b/repo/js/周本2-风魔龙/manifest.json @@ -6,10 +6,10 @@ "description": "需0.44.6及以上版本,配队刚需芙芙等大范围索敌角色,保证战斗脚本没有任何的转向和移动应该可以正常领取。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本原地版q是14s,建议可以比正常单轮时间多个1s,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。演示视频https://www.bilibili.com/video/BV1cpGCz6EWN/?vd_source=9dfaf88af48ecc0ff95a41f1145af7a2。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/周本3-公子/manifest.json b/repo/js/周本3-公子/manifest.json index 70a8ffc5..291388e2 100644 --- a/repo/js/周本3-公子/manifest.json +++ b/repo/js/周本3-公子/manifest.json @@ -5,10 +5,10 @@ "description": "需0.44.6及以上版本,兼容大部分正常队伍及战斗策略(禁止大幅度转向和移动技能龙王转圈、纳西达转圈、夜兰e……),但还是建议在JS设置中选择合适的防御料理(推荐骇浪派)。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本原地版q是14s,建议可以比正常单轮时间多个1s,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。演示视频https://www.bilibili.com/video/BV1cpGCz6EWN/?vd_source=9dfaf88af48ecc0ff95a41f1145af7a2。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/周本4-若陀/manifest.json b/repo/js/周本4-若陀/manifest.json index f2323a34..21111c0b 100644 --- a/repo/js/周本4-若陀/manifest.json +++ b/repo/js/周本4-若陀/manifest.json @@ -5,10 +5,10 @@ "description": "需0.44.6及以上版本,兼容所有正常队伍及战斗策略,但还是建议在JS设置中选择合适的防御料理(推荐骇浪派)。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本原地版q是14s,看情况可以多加一秒,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。演示视频https://www.bilibili.com/video/BV1cpGCz6EWN/?vd_source=9dfaf88af48ecc0ff95a41f1145af7a2。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/周本5-女士/manifest.json b/repo/js/周本5-女士/manifest.json index aa37d7cc..dd7608f3 100644 --- a/repo/js/周本5-女士/manifest.json +++ b/repo/js/周本5-女士/manifest.json @@ -5,10 +5,10 @@ "description": "需0.44.6及以上版本,兼容大部分正常队伍及战斗策略(禁止大幅度转向和移动技能龙王转圈、纳西达转圈、夜兰e……),但还是建议在JS设置中选择合适的防御料理(推荐骇浪派)。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本火神原地版是28s,建议可以比正常单轮时间多个1s,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。演示视频https://www.bilibili.com/video/BV1cpGCz6EWN/?vd_source=9dfaf88af48ecc0ff95a41f1145af7a2。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/周本6-雷神/manifest.json b/repo/js/周本6-雷神/manifest.json index e19d7bef..4e895077 100644 --- a/repo/js/周本6-雷神/manifest.json +++ b/repo/js/周本6-雷神/manifest.json @@ -5,10 +5,10 @@ "description": "需0.44.6及以上版本,兼容所有正常队伍及战斗策略(禁止大幅度转向和移动技能龙王转圈、纳西达转圈、夜兰e……),但还是建议在JS设置中选择合适的防御料理(推荐骇浪派),另外最重要的是,没有六命老芭,请一定要选择使用复活料理和恢复料理。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本原地版q是14s,建议可以比正常单轮时间多个1s,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。演示视频https://www.bilibili.com/video/BV1cpGCz6EWN/?vd_source=9dfaf88af48ecc0ff95a41f1145af7a2。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/周本7-散兵/manifest.json b/repo/js/周本7-散兵/manifest.json index 626af406..b06865fe 100644 --- a/repo/js/周本7-散兵/manifest.json +++ b/repo/js/周本7-散兵/manifest.json @@ -5,10 +5,10 @@ "description": "需0.44.6及以上版本,兼容所有正常队伍及战斗策略(禁止大幅度转向和移动技能龙王转圈、纳西达转圈、夜兰e……),但还是建议在JS设置中选择合适的防御料理(推荐骇浪派),另外最重要的是,没有六命老芭,请一定要选择使用复活料理和恢复料理。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本原地版q是14s,建议可以比正常单轮时间多个1s,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。演示视频https://www.bilibili.com/video/BV1cpGCz6EWN/?vd_source=9dfaf88af48ecc0ff95a41f1145af7a2。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/周本8-草龙/manifest.json b/repo/js/周本8-草龙/manifest.json index ead91497..21ef627e 100644 --- a/repo/js/周本8-草龙/manifest.json +++ b/repo/js/周本8-草龙/manifest.json @@ -5,10 +5,10 @@ "description": "需0.44.6及以上版本,兼容所有正常队伍及战斗策略,但还是建议在JS设置中选择合适的防御料理(推荐骇浪派)。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本火神原地版是28s,建议可以比正常单轮时间多个1s,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。演示视频https://www.bilibili.com/video/BV1cpGCz6EWN/?vd_source=9dfaf88af48ecc0ff95a41f1145af7a2。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/周本9-鲸鱼/manifest.json b/repo/js/周本9-鲸鱼/manifest.json index 5c0cc43e..577f698d 100644 --- a/repo/js/周本9-鲸鱼/manifest.json +++ b/repo/js/周本9-鲸鱼/manifest.json @@ -5,10 +5,10 @@ "description": "需0.44.6及以上版本,兼容所有正常队伍及战斗策略,但还是建议在JS设置中选择合适的防御料理(推荐骇浪派)。脚本需要在调度器设置里开启路径追踪行走配置,选择切换的队伍,打开允许在JsScript中使用,打开战斗配置,选择战斗策略,关闭战斗结束拾取物品和万叶拾取,最后根据战斗脚本一次循环的时间,在战斗超时中填入,比如周本原地版q是14s,建议可以比正常单轮时间多个1s,另外搭配一条龙领奖无树脂脚本使用体验更佳哟。演示视频https://www.bilibili.com/video/BV1cpGCz6EWN/?vd_source=9dfaf88af48ecc0ff95a41f1145af7a2。", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/多层文件夹处理/manifest.json b/repo/js/多层文件夹处理/manifest.json index e779451f..904b6644 100644 --- a/repo/js/多层文件夹处理/manifest.json +++ b/repo/js/多层文件夹处理/manifest.json @@ -5,9 +5,10 @@ "description": "读取多层文件夹并进行处理的一种方法", "authors": [ { - "name": "mno" + "name": "mno", + "links": "https://github.com/Bedrockx" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/尘歌壶一条龙/manifest.json b/repo/js/尘歌壶一条龙/manifest.json index 8bc2ac93..7b3ee936 100644 --- a/repo/js/尘歌壶一条龙/manifest.json +++ b/repo/js/尘歌壶一条龙/manifest.json @@ -6,9 +6,9 @@ "authors": [ { "name": "miludelongwang", - "link": "https://github.com/miludelongwang/GI-Model-Importer" + "links": "https://github.com/miludelongwang/GI-Model-Importer" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/恢复默认键位设置/manifest.json b/repo/js/恢复默认键位设置/manifest.json index d868e8d5..684e2d92 100644 --- a/repo/js/恢复默认键位设置/manifest.json +++ b/repo/js/恢复默认键位设置/manifest.json @@ -1,13 +1,13 @@ { "manifest_version": 1, "name": "恢复默认键位", - "version": "1.0", + "version": "1.0", "bgi_version": "0.45.0", "description": "用于恢复默认键位", "authors": [ { "name": "寒烟", - "link": "https://github.com/214-hanyan" + "links": "https://github.com/214-hanyan" } ], "settings_ui": "settings.json", diff --git a/repo/js/提瓦特百货商店/manifest.json b/repo/js/提瓦特百货商店/manifest.json index c258287e..5565a035 100644 --- a/repo/js/提瓦特百货商店/manifest.json +++ b/repo/js/提瓦特百货商店/manifest.json @@ -7,7 +7,7 @@ "authors": [ { "name": "小鹰划船不用桨", - "link": "https://github.com/Kotagan" + "links": "https://github.com/Kotagan" } ], "settings_ui": "settings.json", diff --git a/repo/js/料理制作及食材加工/manifest.json b/repo/js/料理制作及食材加工/manifest.json index 0dc0bdc4..4b60eb93 100644 --- a/repo/js/料理制作及食材加工/manifest.json +++ b/repo/js/料理制作及食材加工/manifest.json @@ -1,19 +1,22 @@ { - "manifest_version": 1, - "bgi_version": "0.44.6", - "name": "料理制作及食材加工", - "version": "1.3", - "tags": ["食材加工", "料理制作"], - "description": "自动烹饪料理以及加工食材,需要0.44.6及以上版本", - "authors": [ - { - "name": "柒叶子", - "link": "https://github.com/511760049" - }, - { - "name": "呱呱z" - } - ], - "settings_ui": "settings.json", - "main": "main.js" -} + "manifest_version": 1, + "bgi_version": "0.44.6", + "name": "料理制作及食材加工", + "version": "1.3", + "tags": [ + "食材加工", + "料理制作" + ], + "description": "自动烹饪料理以及加工食材,需要0.44.6及以上版本", + "authors": [ + { + "name": "柒叶子", + "links": "https://github.com/5117600049" + }, + { + "name": "呱呱z" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/每月自动兑换抽卡资源/manifest.json b/repo/js/每月自动兑换抽卡资源/manifest.json index 52430ceb..3ed81eff 100644 --- a/repo/js/每月自动兑换抽卡资源/manifest.json +++ b/repo/js/每月自动兑换抽卡资源/manifest.json @@ -5,10 +5,10 @@ "description": "每个月自动兑换蓝球和粉球,兑换资源不够会提醒(需要打开 js 通知),本月兑换过会自动跳过,想要重置 CD可以把monthly.txt中的时间删掉", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/消耗复活料理/manifest.json b/repo/js/消耗复活料理/manifest.json index 6c554309..a4844ae6 100644 --- a/repo/js/消耗复活料理/manifest.json +++ b/repo/js/消耗复活料理/manifest.json @@ -5,7 +5,8 @@ "description": "通过信仰之跃消耗放在食品袋中的复活料理,注意,使用前请确保要消耗的复活料理在食品袋中并且装备食品袋小道具,并且不要开启行走位,生存位等配置,也不要开启循环使用小道具", "authors": [ { - "name": "mno" + "name": "mno", + "links": "https://github.com/Bedrockx" } ], "settings_ui": "settings.json", diff --git a/repo/js/烹饪熟练度一键拉满/manifest.json b/repo/js/烹饪熟练度一键拉满/manifest.json index bc396b8d..8aa00c2b 100644 --- a/repo/js/烹饪熟练度一键拉满/manifest.json +++ b/repo/js/烹饪熟练度一键拉满/manifest.json @@ -2,14 +2,16 @@ "manifest_version": 1, "name": "烹饪熟练度一键拉满", "version": "1.1", - "tags": ["烹饪"], + "tags": [ + "烹饪" + ], "description": "如果总是差一点,请自行在js设置中加减合适的时间,烹饪不可用的时候,请选择合适的置信度。此外感谢万民堂对本脚本的大力支持。下面是一段广告:亲朋聚宴哪家强?吃虎岩找万民堂!璃月厨王掌厨房,菜品质量有保障!服务热情更在行,欢声笑语聚满堂!", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/纪行周常-10个boss一条龙/manifest.json b/repo/js/纪行周常-10个boss一条龙/manifest.json index 5a68a11d..22ae5695 100644 --- a/repo/js/纪行周常-10个boss一条龙/manifest.json +++ b/repo/js/纪行周常-10个boss一条龙/manifest.json @@ -5,10 +5,10 @@ "description": "请看一看readme文件", "authors": [ { - "name": "wjdsg&Tool_tingsu", - "link": "https://gitee.com/wangjian0327/auto-bgi" + "name": "wjdsg&Tool_tingsu", + "links": "https://gitee.com/wangjian0327/auto-bgi" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/纪行周常-15次秘境一条龙/manifest.json b/repo/js/纪行周常-15次秘境一条龙/manifest.json index 804e4d3b..6a1275f3 100644 --- a/repo/js/纪行周常-15次秘境一条龙/manifest.json +++ b/repo/js/纪行周常-15次秘境一条龙/manifest.json @@ -5,10 +5,10 @@ "description": "", "authors": [ { - "name": "Tool_tingsu", - "link": "" + "name": "Tool_tingsu", + "links": "https://github.com/Tooltingsu" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/背包材料统计/manifest.json b/repo/js/背包材料统计/manifest.json index f4192117..1eb0fbc4 100644 --- a/repo/js/背包材料统计/manifest.json +++ b/repo/js/背包材料统计/manifest.json @@ -6,7 +6,8 @@ "description": "默认四行为一页;模板匹配材料,OCR识别数量。\n数字太小可能无法识别,用?代替。\n目前支持采集材料的数量统计+路径CD管理。", "authors": [ { - "name": "吉吉喵" + "name": "吉吉喵", + "links": "https://github.com/JJMdzh" } ], "settings_ui": "settings.json", diff --git a/repo/js/自动小怪锄地规划/manifest.json b/repo/js/自动小怪锄地规划/manifest.json index f3b5f87b..d076beb9 100644 --- a/repo/js/自动小怪锄地规划/manifest.json +++ b/repo/js/自动小怪锄地规划/manifest.json @@ -6,9 +6,10 @@ "description": "该脚本支持根据用户配置生成路径组文件、运行路径组或输出地图追踪文件。用户可以通过自定义配置设置所需怪物数量、筛选条件(如是否排除水免路线或高危路线)以及效率计算权重。脚本会根据这些条件自动筛选出符合条件的路线,此外,支持刷新cd检测,启用后未刷新的路线在运行时将被跳过。注意,第一次使用时要先生成路径组文件后再执行路径组文件,之后的每次运行无需再次生成路径组文件,将根据自定义配置中的内容自动寻找对应的路径组文件,当你需要强制刷新cd或更改筛选条件时可以重新生成路径组文件", "authors": [ { - "name": "mno" + "name": "mno", + "links": "https://github.com/Bedrockx" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/自动精英锄地规划/manifest.json b/repo/js/自动精英锄地规划/manifest.json index 54df22c7..ec7963c1 100644 --- a/repo/js/自动精英锄地规划/manifest.json +++ b/repo/js/自动精英锄地规划/manifest.json @@ -6,9 +6,10 @@ "description": "脚本名称:自动精英锄地规划\n该脚本支持根据用户配置生成路径组文件、运行路径组或执行路径文件。用户可以通过配置文件设置所需怪物数量、筛选条件(如是否包含传奇路线、水免路线、次数盾路线、高危路线)以及最低秒均值。脚本还支持禁用自动拾取功能和启用路线CD检测。脚本会根据这些条件筛选出符合条件的路线,并生成路径组文件或直接运行路径文件,直到满足所需怪物数量。", "authors": [ { - "name": "mno" + "name": "mno", + "links": "https://github.com/Bedrockx" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/自动领取成就奖励/manifest.json b/repo/js/自动领取成就奖励/manifest.json index dcb19069..b5e9ec1a 100644 --- a/repo/js/自动领取成就奖励/manifest.json +++ b/repo/js/自动领取成就奖励/manifest.json @@ -3,13 +3,15 @@ "name": "自动领取成就奖励", "version": "1.2", "description": "所以米桑什么时候实装一键领取?", - "tags" : [ "OCR" ], + "tags": [ + "OCR" + ], "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/苍晶螺采集水下(77个)/manifest.json b/repo/js/苍晶螺采集水下(77个)/manifest.json index 8a41016b..9b9d19df 100644 --- a/repo/js/苍晶螺采集水下(77个)/manifest.json +++ b/repo/js/苍晶螺采集水下(77个)/manifest.json @@ -6,9 +6,9 @@ "authors": [ { "name": "柒叶子", - "link": "https://github.com/5117600049" + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/识图工具 区域坐标/manifest.json b/repo/js/识图工具 区域坐标/manifest.json index ff29816f..59e58327 100644 --- a/repo/js/识图工具 区域坐标/manifest.json +++ b/repo/js/识图工具 区域坐标/manifest.json @@ -5,7 +5,8 @@ "description": "识别图片输出坐标区域", "authors": [ { - "name": "吉吉喵" + "name": "吉吉喵", + "links": "https://github.com/JJMdzh" } ], "settings_ui": "settings.json", diff --git a/repo/js/购买四方八方之网/manifest.json b/repo/js/购买四方八方之网/manifest.json index 60c5bb49..741c0c02 100644 --- a/repo/js/购买四方八方之网/manifest.json +++ b/repo/js/购买四方八方之网/manifest.json @@ -6,7 +6,7 @@ "authors": [ { "name": "越空", - "link": "https://github.com/SophieZ22" + "links": "https://github.com/SophieZ22" } ], "main": "main.js" diff --git a/repo/js/采集cd管理/manifest.json b/repo/js/采集cd管理/manifest.json index f0378c40..8da71d15 100644 --- a/repo/js/采集cd管理/manifest.json +++ b/repo/js/采集cd管理/manifest.json @@ -6,9 +6,10 @@ "description": "仅面对会操作文件和读readme的用户,基于文件夹操作自动管理采集路线的cd,会按照路径组的顺序依次运行,直到指定的时间,并会按照给定的cd类型,自动跳过未刷新的路线", "authors": [ { - "name": "mno" + "name": "mno", + "links": "https://github.com/Bedrockx" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file diff --git a/repo/js/铁匠铺/manifest.json b/repo/js/铁匠铺/manifest.json index 0ef70ed0..aa2bba42 100644 --- a/repo/js/铁匠铺/manifest.json +++ b/repo/js/铁匠铺/manifest.json @@ -1,21 +1,26 @@ { - "manifest_version": 1, - "name": "自动锻造魔矿(识图版)", - "version": "2.2", - "bgi_version": "0.44.0", - "description": "自动选择铁匠铺和使用矿物去锻造精锻矿。\n新增功能:仅领取锻造 - 允许用户仅领取已完成的锻造物品,而不进行新的锻造。\n \n使用前请阅读“readme”文件以获取更多详细信息。 \n---更新说明--- \n- 请查阅readme", - "tags": ["铁匠铺", "锻造", "精锻用矿"], - "authors": [ - { - "name": "呱呱z" - }, - { - "name": "寒露" - }, - { - "name": "蜜柑魚" - } - ], - "settings_ui": "settings.json", - "main": "main.js" -} + "manifest_version": 1, + "name": "自动锻造魔矿(识图版)", + "version": "2.2", + "bgi_version": "0.44.0", + "description": "自动选择铁匠铺和使用矿物去锻造精锻矿。\n新增功能:仅领取锻造 - 允许用户仅领取已完成的锻造物品,而不进行新的锻造。\n \n使用前请阅读“readme”文件以获取更多详细信息。 \n---更新说明--- \n- 请查阅readme", + "tags": [ + "铁匠铺", + "锻造", + "精锻用矿" + ], + "authors": [ + { + "name": "呱呱z" + }, + { + "name": "寒露" + }, + { + "name": "蜜柑魚", + "links": "https://github.com/this-Fish" + } + ], + "settings_ui": "settings.json", + "main": "main.js" +} \ No newline at end of file diff --git a/repo/js/领取洞天宝钱和好感/manifest.json b/repo/js/领取洞天宝钱和好感/manifest.json index 955819d8..473003f8 100644 --- a/repo/js/领取洞天宝钱和好感/manifest.json +++ b/repo/js/领取洞天宝钱和好感/manifest.json @@ -5,7 +5,8 @@ "description": "领取洞天宝钱和好感", "authors": [ { - "name": "风埠" + "name": "风埠", + "links": "https://github.com/jhkif" } ], "main": "main.js" diff --git a/repo/js/食材加工 识图/manifest.json b/repo/js/食材加工 识图/manifest.json index 6c03a32c..1467e677 100644 --- a/repo/js/食材加工 识图/manifest.json +++ b/repo/js/食材加工 识图/manifest.json @@ -5,7 +5,8 @@ "description": "食材加工 识图 复选框。", "authors": [ { - "name": "吉吉喵" + "name": "吉吉喵", + "links": "https://github.com/JJMdzh" } ], "settings_ui": "settings.json", diff --git a/repo/js/首领讨伐一条龙/manifest.json b/repo/js/首领讨伐一条龙/manifest.json index 45ba16dd..7e37d1ab 100644 --- a/repo/js/首领讨伐一条龙/manifest.json +++ b/repo/js/首领讨伐一条龙/manifest.json @@ -5,10 +5,10 @@ "description": "请看一看readme文件", "authors": [ { - "name": "柒叶子", - "link": "https://github.com/511760049" + "name": "柒叶子", + "links": "https://github.com/5117600049" } ], "settings_ui": "settings.json", "main": "main.js" -} +} \ No newline at end of file