Greasy Fork is available in English.

网盘自动填写访问码【威力加强版】

智能融合网盘密码到网址中,打开网盘链接时不再需要手动复制密码,并自动提交密码,一路畅通无阻。同时记录网盘信息,当你再次打开该分享文件时,不再需要去找提取码,同时可追溯网盘地址的来源。

  1. // ==UserScript==
  2. // @name 网盘自动填写访问码【威力加强版】
  3. // @description 智能融合网盘密码到网址中,打开网盘链接时不再需要手动复制密码,并自动提交密码,一路畅通无阻。同时记录网盘信息,当你再次打开该分享文件时,不再需要去找提取码,同时可追溯网盘地址的来源。
  4. // @author 极品小猫
  5. // @namespace https://greasyfork.org/zh-CN/users/3128
  6. // @version 3.24.40.2
  7. //
  8. // @include http://*
  9. // @include https://*
  10. //
  11. // @exclude https://*.12315.cn
  12. // @exclude http*://*.pcs.baidu.com/*
  13. // @exclude http*://*.baidupcs.com/*
  14. // @exclude http*://*:8666/file/*
  15. // @exclude http*://*.baidu.com/file/*
  16. // @exclude http*://index.baidu.com/*
  17. //
  18. // @exclude http*://*.gov/*
  19. // @exclude http*://*.gov.cn/*
  20. // @exclude http*://*.taobao.com/*
  21. // @exclude http*://*.tmall.com/*
  22. // @exclude http*://*.alimama.com/*
  23. // @exclude http*://*.jd.com/*
  24. // @exclude http*://*.zol.com.cn/*
  25. // @exclude http*://*.ctrip.com/*
  26. // @exclude http*://*.evernote.com/*
  27. // @exclude http*://*.yinxiang.com/*
  28. // @exclude http*://mail.*
  29. // @exclude http*://ping.*
  30. // @exclude http*://whois.*
  31. // @exclude http*://inbox.google.com/*
  32. // @exclude https://www.12377.cn/*
  33. // @exclude /^https?://(localhost|10\.|192\.|127\.)/
  34. // @exclude /https?://www.baidu.com/(?:s|baidu)\?/
  35. // @exclude http*://www.zhihu.com/question/*/answers/created
  36. // @exclude https://caiyun.feixin.10086.cn/portal/index.jsp#myfile*
  37. // @require https://bowercdn.net/c/jquery-2.1.4/dist/jquery.min.js
  38. // @require https://greasyfork.org/scripts/35940-my-jquery-plugin/code/My%20jQuery%20Plugin.js?version=234478
  39. // @supportURL https://scriptcat.org/script-show-page/373/issue
  40. // @homepage https://scriptcat.org/users/46868
  41. // @icon https://nd-static.bdstatic.com/m-static/wp-brand/favicon.ico
  42.  
  43. // @connect agefans.tv
  44. // @grant unsafeWindow
  45. // @grant GM_setValue
  46. // @grant GM_getValue
  47. // @grant GM_deleteValue
  48. // @grant GM_listValues
  49. // @grant GM_addStyle
  50. // @grant GM_xmlhttpRequest
  51. // @grant GM_notification
  52. // @grant GM_registerMenuCommand
  53. // @grant GM_info
  54. // @noframes
  55. // @encoding utf-8
  56. // @run-at document-idle
  57. // @license GPL-3.0 License
  58. // ==/UserScript==
  59.  
  60. (function(){
  61. /* globals $ */
  62. 'use strict';
  63. let urls=location.href,
  64. hash=location.hash,
  65. host=location.hostname.replace(/^(?:www|pan)\.(?!baidu.com|xunlei.com)/i,'').replace(/([^.]+)\.(?=lanzou[a-z]?.com|ctfile.com)/,'').replace(/share\.(115.com)/i,'$1').toLowerCase(),
  66. hosts=location.hostname.toLowerCase(),
  67. search=location.search,
  68. paths=location.pathname.toLowerCase(),
  69. Control_newTag=true, // 网盘链接添加以新页面打开属性
  70. u=unsafeWindow,
  71. msgControl=false; //信息日志关闭开关
  72.  
  73. //蓝奏云域名预处理
  74. host=host.replace(/^\w+\.(?=lanzou)/,'').replace(/(?<=lanzou)[a-z]?/i,'').replace(/^\w+\.(?=lanzn)/,'');
  75. host=host.replace(/\w+\.(?=ctfile.com)/, '');
  76.  
  77. //管理功能开关 & 设置
  78. let CatPW_Manage_Config, // 管理功能配置,采用 GM_setValue API进行保存,非 localStorage
  79. StorageSave, // 信息记录功能,localStorage 记录密码开关
  80. StorageExp, // localStorage 记录密码的有效期(天数)
  81. UpdataConfig={
  82. UpdataSave:true, // 再次访问该网盘地址时,更新信息
  83. UpdataNotify:true, // 更新该网盘地址时,发出桌面通知
  84. UpdataPlugin:true, // 脚本更新后,发出桌面通知
  85. };
  86.  
  87. if(typeof(GM_getValue('CatPW_Manage'))==='undefined') {
  88. CatPW_Manage_Config={'StorageSave':true,'UpdataConfig':UpdataConfig,'StorageExp':365};
  89. GM_setValue('CatPW_Manage', CatPW_Manage_Config);
  90. } else {
  91. CatPW_Manage_Config=GM_getValue('CatPW_Manage');
  92. if(!CatPW_Manage_Config.UpdataConfig) {
  93. CatPW_Manage_Config.UpdataConfig=UpdataConfig;
  94. GM_setValue('CatPW_Manage', CatPW_Manage_Config);
  95. }
  96. }
  97.  
  98. StorageSave=CatPW_Manage_Config.StorageSave;
  99. StorageExp=CatPW_Manage_Config.StorageExp;
  100. UpdataConfig=CatPW_Manage_Config.UpdataConfig;
  101.  
  102. let Cat = {
  103. changelog : `
  104. * v3.24.40.2 [2025.01.29]
  105. 【增加】123pan 新域名 123684.com 的支持
  106. * v3.24.40.1 [2024.10.12]
  107. 【优化】百度网盘管理按钮挤占订阅按钮问题(挪至分享者用户名后面)
  108. 【优化】空密码时无限提交问题
  109. * v3.24.40
  110. 【修复】脚本图标
  111. 【增加】蓝奏网盘 lanzo.com 域名支持
  112. 【优化】停止使用 GM.info 接口,以便于兼容Via等其它手机浏览器。
  113. 【优化】脚本更新内容提示逻辑。
  114. 【优化】网盘密码识别策略,增加已融合提取码纠错。
  115. 【增加】新的融合方法,支持【选中提取码】文本点击网盘链接,优先融合选定的提取码。
  116. 【修复】迅雷网盘移动端页面不会自动提交问题。
  117. 【特殊支持】密码融合,异星软件空间(yxssp.com
  118. `,
  119. UpdataPlugin : function(e){
  120. //插件更新提示
  121. if(this.changelog!==UpdataConfig.changelog) {
  122. GM_notification({
  123. 'title' : '网盘自动填写访问码 - 更新日志',
  124. 'text' : `更详细的更新信息,请点击通知查看`,
  125. 'image' : `https://nd-static.bdstatic.com/m-static/wp-brand/favicon.ico`,
  126. 'timeout' : 60*1000,
  127. 'onclick' : function(e){
  128. alert(`更新日志详细${Cat.changelog}`);
  129. }
  130. });
  131. CatPW_Manage_Config.UpdataConfig.changelog=this.changelog;
  132. GM_setValue('CatPW_Manage', CatPW_Manage_Config);
  133. }
  134. },
  135. init : function(){
  136. this.UpdataPlugin();//更新提示
  137. }
  138. };
  139. Cat.init();
  140.  
  141. var site = {
  142. 'pwdRule' : /(?:提取|访问)[码碼]?\s*[::﹕ ]?\s*([a-z\d]{4})/, //常规密码
  143. 'codeRule' : /(?:(?:提取|访问|(?<!解压)密[码碼]|艾|Extracted-code)[码碼]?)\s*[::﹕ ]?\s*([a-z\d]{4})/i, //其它类型的访问密码
  144. 'codeRuleBorder' : /(?:(?:提取|访问|(?<!解压)密[码碼]|艾|Extracted-code)[码碼]?)\s*[::﹕ ]?\s*([a-z\d]{4,8})[\))]/i, //其它类型的访问密码
  145. 'YunDisk':{
  146. 'pan.baidu.com':{
  147. exclude : /\/disk\//i,
  148. CodeParam: 'pwd',
  149. surl : function(){
  150. if(getQueryString('surl')) return getQueryString('surl');
  151. else if(yunData.LRURPVSDB) return yunData.LRURPVSDB.replace(/%26%2Fs%2F.+/,'');
  152. else return location.pathname.replace('/s/1','').replace(/#.+/,'');
  153. },
  154. chk : /^[a-z0-9]{4}$/,
  155. code : '.pickpw input, #accessCode, [placeholder="请输入提取码"]',
  156. btn : '.g-button, #submitBtn, #getfileBtn, .m-button-big',
  157. PreProcess: function() { //预处理
  158. console.group('===== 百度网盘自动填写密码 Begin =====');
  159. if(!/mobile/i.test(navigator.userAgent)) {
  160. let CatPW_BaiduPan={
  161. CatPW_Manage : function(){
  162. let CatPW_Manage_Menu_Fn = {
  163. infoFn : function(e){ //信息记录功能
  164. StorageSave=CatPW_Manage_Config.StorageSave=StorageSave?!confirm('你已开启“信息记录功能”,是否需要关闭?'):confirm('你已关闭“信息记录功能”,是否需要开启?');
  165. $(this).text(StorageSave?'已开启信息记录功能':'已关闭信息记录功能');
  166. CatPW_Manage_Menu_Fn.save();
  167. CatPW_BaiduPan.ShowInfo();
  168. },
  169. UpdataConfigFn : {
  170. UpdataSave : function(e){
  171. UpdataConfig.UpdataSave=CatPW_Manage_Config.UpdataConfig.UpdataSave=UpdataConfig.UpdataSave?!confirm('你已开启“信息记录更新功能”,是否需要关闭?'):confirm('你已关闭“信息记录更新功能”,是否需要开启?');
  172. $(this).text(UpdataConfig.UpdataSave?'已开启记录更新功能':'已关闭记录更新功能');
  173. CatPW_Manage_Menu_Fn.save();
  174. },
  175. UpdataNotify : function(e){
  176. UpdataConfig.UpdataNotify=CatPW_Manage_Config.UpdataConfig.UpdataNotify=UpdataConfig.UpdataNotify?!confirm('你已开启“信息记录更新桌面通知功能”,是否需要关闭?'):confirm('你已关闭“信息记录更新桌面通知功能”,是否需要开启?');
  177. $(this).text(UpdataConfig.UpdataNotify?'已开启更新桌面通知':'已关闭更新桌面通知');
  178. CatPW_Manage_Menu_Fn.save();
  179. },
  180. UpdataPlugin : function(e){
  181. UpdataConfig.UpdataPlugin=CatPW_Manage_Config.UpdataConfig.UpdataPlugin=UpdataConfig.UpdataPlugin?!confirm('你已开启“脚本更新桌面通知功能”,是否需要关闭?'):confirm('你已关闭“脚本更新桌面通知功能”,是否需要开启?');
  182. $(this).text(UpdataConfig.UpdataPlugin?'脚本更新桌面通知':'脚本更新不通知');
  183. CatPW_Manage_Menu_Fn.save();
  184. },
  185. MessageUI : function(e){
  186. UpdataConfig.MessageUI=CatPW_Manage_Config.UpdataConfig.MessageUI=UpdataConfig.MessageUI?!confirm('你已开启“网页嵌入式的网盘信息”,是否切换为“顶部浮动式的网盘信息”?'):confirm('你已开启“网页嵌入式的网盘信息”,是否切换为“浮动窗式的网盘信息”?');
  187. $(this).text(UpdataConfig.MessageUI?'切换为浮动式网盘信息':'切换为嵌入式网盘信息');
  188. CatPW_Manage_Menu_Fn.save();
  189. location.reload();
  190. }
  191. },
  192. Exp : function(e){
  193. var _StorageExpTemp;
  194. do{
  195. _StorageExpTemp=prompt("设置信息保存时间(天数):", _StorageExpTemp||StorageExp)||_StorageExpTemp||StorageExp;
  196. if(!/^\d+$/.test(_StorageExpTemp)) {
  197. alert('所设置的天数不是数字,请重新设置');
  198. }
  199. else break;
  200. } while(!/^\d+$/.test(_StorageExpTemp));
  201. StorageExp=CatPW_Manage_Config.StorageExp=_StorageExpTemp;
  202. $(this).text('信息保存时间:'+_StorageExpTemp+'天');
  203. CatPW_Manage_Menu_Fn.save();
  204. },
  205. CleanInfo : function(e){
  206. var _CleanInfo=confirm("如果所记录的信息并没有及时更新,可通过该功能清除记录。");
  207. if(_CleanInfo) GM_setValue('CatPW', {});
  208. },
  209. save : function(){
  210. GM_setValue('CatPW_Manage', CatPW_Manage_Config);
  211. }
  212. };
  213. let CatPW_Manage_Main=$('<span style="display:inline;width:150px;text-align:center;">').attr({'class':'g-dropdown-button'});
  214. let CatPW_Manage_A=$('<a>').attr({'class':'g-button','href':'javascript:void(0);'});
  215. let CatPW_Manage_A_span=$('<span class="g-button-right">');
  216. let CatPW_Manage_A_span_span=$('<span class="text">').text('密码填写管理');
  217. let CatPW_Manage_Menu=$('<span class="menu" style="width:auto;z-index:41;position:absolute;">');
  218. let CatPW_Manage_Menu_infoFn=$('<A class="g-button-menu" href="javascript:void(0);">').text(StorageSave?'已开启信息记录功能':'已关闭信息记录功能').attr({'data-menu-id':'b-menu307'}).click(CatPW_Manage_Menu_Fn.infoFn);
  219. let CatPW_Manage_Menu_Exp=$('<A class="g-button-menu" href="javascript:void(0);">').text('信息保存时间:'+StorageExp+'天').attr({'data-menu-id':'b-menu308'}).click(CatPW_Manage_Menu_Fn.Exp);
  220. let CatPW_Manage_Menu_CleanInfo=$('<A class="g-button-menu" href="javascript:void(0);">').text('清除缓存记录信息').attr({'data-menu-id':'b-menu309'}).click(CatPW_Manage_Menu_Fn.CleanInfo);
  221. let CatPW_Manage_Menu_UpdataSave=$('<A class="g-button-menu" href="javascript:void(0);">').text(UpdataConfig.UpdataSave?'已开启记录更新功能':'已关闭记录更新功能').attr({'data-menu-id':'b-menu310'}).click(CatPW_Manage_Menu_Fn.UpdataConfigFn.UpdataSave);
  222. let CatPW_Manage_Menu_UpdataNotify=$('<A class="g-button-menu" href="javascript:void(0);">').text(UpdataConfig.UpdataNotify?'已开启网盘信息通知':'已关闭网盘信息通知').attr({'data-menu-id':'b-menu311'}).click(CatPW_Manage_Menu_Fn.UpdataConfigFn.UpdataNotify);
  223. let CatPW_Manage_Menu_UpdataPlugin=$('<A class="g-button-menu" href="javascript:void(0);">').text(UpdataConfig.UpdataPlugin?'已开启脚本更新通知':'已关闭脚本更新通知').attr({'data-menu-id':'b-menu313'}).click(CatPW_Manage_Menu_Fn.UpdataConfigFn.UpdataPlugin);
  224. let CatPW_Manage_Menu_MessageUI=$('<A class="g-button-menu" href="javascript:void(0);">').text(UpdataConfig.MessageUI?'切换为浮动式网盘信息':'切换为嵌入式网盘信息').attr({'data-menu-id':'b-menu314'}).click(CatPW_Manage_Menu_Fn.UpdataConfigFn.MessageUI);
  225.  
  226.  
  227. CatPW_Manage_A.append(CatPW_Manage_A_span);
  228. CatPW_Manage_A_span.append(CatPW_Manage_A_span_span);
  229. CatPW_Manage_Menu.append(CatPW_Manage_Menu_infoFn, CatPW_Manage_Menu_Exp, CatPW_Manage_Menu_CleanInfo, '<hr>', CatPW_Manage_Menu_UpdataSave, CatPW_Manage_Menu_UpdataNotify, CatPW_Manage_Menu_UpdataPlugin, CatPW_Manage_Menu_MessageUI);
  230.  
  231. //注入到登录信息旁
  232. CatPW_Manage_Main.appendTo('.slide-show-user-info, .share-person-inner')//('[node-type="header-apps"]');
  233. //注入到下载按钮旁
  234. //CatPW_Manage_Main.insertBefore('.x-button-box>.g-button.tools-share-save-hb');
  235.  
  236. CatPW_Manage_Main.append(CatPW_Manage_A).append(CatPW_Manage_Menu).hover(function(){
  237. CatPW_Manage_Main.toggleClass('button-open');
  238. });
  239. //GM_addStyle('.slide-show-right{width:650px!important;}');
  240. },
  241. ShowInfo : function(){
  242. //显示信息记录
  243. var CatPW_Info_Display=$('#CatPW_Info').css('display');
  244. if(CatPW_Info_Display) {
  245. if(CatPW_Info_Display=='none') $('#CatPW_Info').css('display','block');
  246. else $('#CatPW_Info').css('display','none');
  247. } else if(StorageSave){
  248. //插入信息记录
  249. var yunData=unsafeWindow.yunData, //取得 yunData 数据
  250. CatPW,
  251. CatPW_Format={'date':Dates(),'sCode':'', unPW:'', 'Src':'', 'surl':'', 'Hash':'', "webSrc":'', "webTitle":''}; //初始化信息记录变量
  252. yunData.surl=getQueryString('surl')||location.pathname.replace('/s/1','').replace(/#.+/,''); //获取当前的分享ID,并添加到 yunData 中
  253. yunData.Src=getQueryString('Src')||location.href.replace(location.search,'');
  254. //初始化 getValue 数据
  255. if(typeof(GM_getValue('CatPW'))==='undefined') {
  256. if(StorageDB('Share_'+yunData.surl).read()) GM_setValue('CatPW', StorageDB('Share_'+yunData.surl).read());
  257. else GM_setValue('CatPW', CatPW_Format); //初始化
  258. }
  259. var isCatPW=GM_getValue('CatPW').Src.search(yunData.surl)>0; //检查当前网盘地址是否与记录匹配
  260. var isCatPW_DB=StorageDB('Share_'+yunData.surl).read();
  261. CatPW=isCatPW?GM_getValue('CatPW'):isCatPW_DB?isCatPW_DB:CatPW_Format; //取得信息记录
  262. CatPW.Src=urls.replace(hash,'');
  263. CatPW.surl='Share_'+yunData.surl; //获取 分享文件surl
  264. CatPW.unPW=decodeURIComponent(CatPW.unPW);
  265. CatPW.webSrc=decodeURIComponent(CatPW.webSrc);
  266. CatPW.webTitle=decodeURIComponent(CatPW.webTitle);
  267. CatPW.sCode=CatPW.sCode||(CatPW.Hash?CatPW.Hash.replace('#',''):/^#/.test(hash)&&!/^#list\/path=/i.test(hash)?hash.match(/^#([^&]+)&?/)[1]:''); //获取 提取码
  268. if(!localStorage[CatPW.surl]) { //当不存在记录时,收集信息
  269. msg('不存在记录,插入信息', 'Src:'+CatPW.Src, 'surl:'+yunData.surl, CatPW);
  270. if(CatPW.Src.search(yunData.surl)<0) {//新记录中的网盘地址与当前的分享ID不一致时,更新信息记录变量
  271. CatPW.Src=urls.replace(hash,'');
  272. CatPW.Hash=hash;
  273. CatPW.sCode=CatPW.sCode;
  274. CatPW.unPW=CatPW.webTitle=CatPW.webSrc=''; //当前网址与记录的信息不符时,只保留密码信息
  275. }
  276.  
  277. CatPW.ShareUK=yunData.SHARE_UK; //获取 分享用户ID
  278. CatPW.ShareID=yunData.SHARE_ID; //获取 分享文件ID
  279. StorageDB(CatPW.surl).insert(CatPW);
  280. }
  281.  
  282. else if(UpdataConfig.UpdataSave && localStorage[CatPW.surl] &&//是否已开启网盘信息记录更新,是否存在缓存
  283. CatPW.Src.search(StorageDB(CatPW.surl).read().surl.replace('Share_',''))>0)//从检测缓存中的分享ID是否与记录中的分享ID匹配
  284. {
  285. var CatPW_StorageDB=StorageDB(CatPW.surl).read();
  286. if(decodeURIComponent(CatPW.webSrc)!==decodeURIComponent(CatPW_StorageDB.webSrc)) {
  287. CatPW_StorageDB.webSrc=decodeURIComponent(CatPW.webSrc);
  288. CatPW_StorageDB.webTitle=decodeURIComponent(CatPW.webTitle);
  289. StorageDB(CatPW.surl).insert(CatPW_StorageDB);
  290. if(UpdataConfig.UpdataNotify) GM_notification({
  291. 'text':'网盘地址来源与上一次记录不同,记录已更新',
  292. 'title':'网盘信息记录更新通知',
  293. 'image':'https://nd-static.bdstatic.com/m-static/wp-brand/favicon.ico',
  294. 'timeout': 1.5*1000
  295. });
  296. }
  297. } else {//直接载入记录
  298. msg('载入 locatStorage 记录');
  299. CatPW=StorageDB(CatPW.surl||yunData.SHARE_ID||getQueryString('shareid')).read();
  300. }
  301.  
  302. msg('分享文件ID:', CatPW.surl, '提取码:', StorageDB(CatPW.surl).find('sCode'));
  303. msg('已收集的信息:', 'conf:', conf, 'localStorage CatPW:', CatPW, 'GM CatPW: ', GM_getValue('CatPW'));
  304.  
  305.  
  306. $(conf.btn).on('mouseup', function(e){ //百度网盘访问码提交事件,提交密码时
  307. var $code=$(conf.code).val().trim();
  308. if($code.search(/\*/)>0) return false;
  309. if($code!=='' && !CatPW.sCode){
  310. CatPW.sCode=$code;
  311. }
  312.  
  313. var tips=$('form[name="accessForm"]~div[style*="display: block"]');
  314. tips.text('')
  315. //提取码提交click事件
  316. if(!localStorage[CatPW.surl]) {
  317. //不存在记录时,添加新纪录
  318. StorageDB(CatPW.surl).insert(CatPW);//插入记录
  319. StorageDB('ShareIDexp').add(CatPW.surl,{'date':Dates(),'id':CatPW.surl,'exp':$.now()+StorageExp*24*60*60*1000}); //记录超时时间
  320. } else if(!StorageDB(CatPW.surl).find('sCode')) {
  321. //不存在提取码信息时,重新获取提取码
  322. StorageDB(CatPW.surl).insert(CatPW);//插入记录
  323. StorageDB('ShareIDexp').add(CatPW.surl,{'date':Dates(),'id':CatPW.surl,'exp':$.now()+StorageExp*24*60*60*1000}); //记录超时时间
  324. } else if($code!==StorageDB(CatPW.surl).find('sCode')&&(tips.text()==='')){
  325. //已记录的提取码与填写的提取码不一致时,更新提取码记录
  326. StorageDB(CatPW.surl).add('sCode', CatPW.sCode);//更新提取码记录
  327. StorageDB('ShareIDexp').add(CatPW.surl,{'date':Dates(),'id':CatPW.surl,'exp':$.now()+StorageExp*24*60*60*1000}); //记录超时时间
  328. }
  329. });
  330.  
  331. //当存在解压密码时,插入新纪录
  332. if(CatPW.unPW&&!localStorage[CatPW.surl]){
  333. StorageDB(CatPW.surl).insert(CatPW);
  334. StorageDB('ShareIDexp').add(CatPW.surl,{'date':Dates(),'id':CatPW.surl,'exp':$.now()+StorageExp*24*60*60*1000}); //记录超时时间
  335. }
  336.  
  337. //显示记录的信息
  338. if('Share_'+yunData.surl==CatPW.surl && localStorage[CatPW.surl]){
  339. let baiduPan_API={
  340. //API: require('system-core:context/context.js').instanceForSystem.list.getCurrentList(),
  341. //server_Filename: i => {return baiduPan_API.API[i||0].server_filename;}
  342. }
  343.  
  344. let CatPW_Data={
  345. //FileName: $('<span>').text('FileName:').append($('<span>').text(baiduPan_API.server_Filename()))
  346. }
  347.  
  348. var CatPW_Info=$('<DIV>').attr('id','CatPW_Info').text('提取码:'+CatPW.sCode+'  '+'解压密码:');
  349. //解压密码
  350. var CatPW_Info_unPW=$('<input>').attr({'id':'unPW','title':'点击复制密码,修改内容将被保存'}).css({'margin':'0 10px','width':'150px','text-align':'center'}).val(CatPW.unPW).change(function(){
  351. StorageDB(CatPW.surl).add('unPW',encodeURIComponent(this.value));
  352. CatPW.unPW=encodeURIComponent(this.value);
  353. GM_setValue('CatPW', CatPW);
  354. }).click(function(){
  355. document.execCommand("SelectAll");document.execCommand("copy");
  356. });
  357.  
  358.  
  359.  
  360. //来源页面:
  361. var CatPW_Info_delBtn=$('<button>').text('删除记录').val('删除记录').click(function(){
  362. delete localStorage[CatPW.surl];
  363. StorageDB('ShareIDexp').del(CatPW.surl);
  364. GM_setValue('CatPW', CatPW_Format);
  365. this.disabled=true;
  366. });
  367.  
  368. var CatPW_Info_WebTitle=$('<span>').attr({'id':'CatPW_webTitle'}).text('网页标题:'+CatPW.webTitle);
  369. var CatPW_Info_WebSrc=$('<A>').attr({'id':'CatPW_webSrc','href':CatPW.webSrc,'target':'_blank'}).text('网盘来源:'+CatPW.webSrc);
  370. GM_addStyle(`
  371. #CatPW_Info{font-size:14px;border:1px solid #06c;padding:5px;display:block;}
  372. #CatPW_Info > span {margin-left:20px;}
  373. button[value="删除记录"][disabled] {background:#aaa;}
  374.  
  375. `);
  376.  
  377. CatPW_Info.append(CatPW_Info_unPW, CatPW_Info_delBtn, /*CatPW_Data.FileName,*/ '<br>', CatPW_Info_WebTitle, '<br>', CatPW_Info_WebSrc);
  378. UpdataConfig.MessageUI?CatPW_Info.insertBefore('.module-share-header'):Fn_MessageUI(CatPW_Info);
  379. }
  380.  
  381. StorageDB('ShareIDexp').deleteExpires();
  382.  
  383. }
  384. },
  385. init : function(){
  386. if(document.querySelector('.verify-input') && !CatPW_Manage_Config?.Tips_BaiduUse) {
  387. let Tips_BaiduUse=$('<div id="Tips_BaiduUse"><span style="color:red">网盘自动填写访问码</span>是一款点击网盘链接时,帮你自动从当前网页匹配网盘密码,并在访问网盘时填写网站上提供的“访问密码”的免费工具。因隐私安全原因,“不支持未知访问码”的网盘链接自动填写,本程序亦不会通过网络途径收集您的任何个人隐私及所访问的网盘内容。所有记录的访问数据均保存在您的本地设备。详细请<a href="https://scriptcat.org/script-show-page/373" target="_blank">阅读脚本使用说明</a>。</div>'),
  388. Tips_BaiduUseClose=$('<button>').text("不再提示").click(()=>{
  389. CatPW_Manage_Config.Tips_BaiduUse=true;
  390. GM_setValue('CatPW_Manage', CatPW_Manage_Config);
  391. Tips_BaiduUse.hide();
  392. });
  393.  
  394. $('.verify-input').prepend(Tips_BaiduUse.append(Tips_BaiduUseClose));
  395. }
  396. if(u.currentSekey) {
  397. this.CatPW_Manage();
  398. this.ShowInfo();
  399. }
  400. }
  401. };
  402. CatPW_BaiduPan.init();
  403. }
  404. console.groupEnd();
  405. },
  406. preSubmit : function(codebox, cdoebtn, sCode){
  407. //百度网盘,手机版页面提交方法
  408. if(!document.querySelector("#init-new")) {
  409. let CodeInput=$('input', '.extract-content');
  410. CodeInput.val(sCode);
  411. CodeInput.get(0).dispatchEvent(new InputEvent("input"));
  412. setTimeout(function(){
  413. $(cdoebtn).click();
  414. }, 1000);
  415. }
  416. }
  417. },
  418. 'eyun.baidu.com': {
  419. chk: /^[a-z0-9]{4}$/,
  420. code: '.share-access-code',
  421. btn: '.g-button-right',
  422. pwdRule : /(?:提取|访问)[码碼]?\s*[:: ]?\s*([a-z\d]{4,14})/,
  423. codeRule : /(?:(?:提取|访问|密[码碼]|Extracted-code)[码碼]?)\s*[:: ]?\s*([a-z\d]{4,14})/i,
  424. PreProcess: function() {
  425. if((hash&&!/sharelink|path/i.test(hash))&&!/enterprise/.test(paths)) {
  426. location.href=location.href.replace(location.hash,'');
  427. }
  428. conf.ShareUK=yunData.SHARE_UK||getQueryString('uk'); //获取 分享用户ID
  429. conf.ShareID=yunData.SHARE_ID||getQueryString('cid'); //获取 分享文件ID
  430. conf.sCode=/^#/.test(hash)?hash.match(/^#(\w+)&?/)[1]:StorageDB(conf.ShareID).find('sCode'); //获取 提取码
  431. $(conf.btn).click(function(){
  432. if(!localStorage[conf.ShareID]&&conf.sCode) {
  433. StorageDB(conf.ShareID).insert({'sCode':conf.sCode});
  434. StorageDB('ShareIDexp').add(conf.ShareID,{'id':conf.ShareID,'exp':$.now()+StorageExp*24*60*60*1000}); //记录超时时间
  435. }
  436. });
  437. StorageDB('ShareIDexp').deleteExpires();
  438. }
  439. },
  440. 'yunpan.360.cn':{
  441. chk : /^[a-z0-9]{4,8}$/,
  442. code : '.pwd-input',
  443. btn : '.submit-btn'
  444. },
  445. 'lanzou.com':{
  446. chk : /^[a-z0-9]{4,8}$/,
  447. code : '#pwd',
  448. btn : '#sub, .passwddiv-btn',
  449. pwdRule : /(?:提取|访问)[码碼]?\s*[:: ]?\s*([a-z\d]{4,6})/,
  450. codeRule : /(?:(?:提取|访问|密[码碼]|Extracted-code)[码碼]?)\s*[:: ]?\s*([a-z\d]{4,6})/i,
  451. IntervalSubmit : true,
  452. PreProcess : function(){
  453. //蓝凑云,手机版页面提交方法
  454. console.log('蓝奏云WAP页面提交')
  455. let tp=document.querySelector('[href^="/tp/"]');
  456. if(tp) {
  457. tp.hash=location.hash;
  458. tp.target="";
  459. }
  460. },
  461. preSubmit : function(codebox, cdoebtn, sCode){
  462. console.log(`蓝凑云预定义方法提交`)
  463. $('.ifr2').contents().find(codebox).val(sCode);
  464. $('.ifr2').contents().find(cdoebtn).click();
  465. },
  466. HostRule: /lanzou[a-z].com/i
  467. },
  468. '115.com': {
  469. chk : /^[a-z0-9]{4,8}$/,
  470. CodeParam: 'password',
  471. code : '.form-item input[placeholder="请输入访问码"]',
  472. btn : '.form-decode>.submit>a[btn="confirm"]',
  473. IntervalSubmit : true
  474. },
  475. 'share.weiyun.com': {
  476. chk: /^[a-z0-9]{6}$/i,
  477. code: '.input-txt',
  478. btn: '.btn.btn-l.btn-main',
  479. pwdRule : /(?:提取|访问)[码碼]?\s*[:: ]?\s*([a-z\d]{4,6})/,
  480. codeRule : /(?:(?:提取|访问|密[码碼]|Extracted-code)[码碼]?)\s*[:: ]?\s*([a-z\d]{4,6})/i,
  481. IntervalSubmit : true
  482. },
  483. 'caiyun.feixin.10086.cn' : {
  484. chk: /^[a-z0-9]{4}$/i,
  485. code: '.lookOutLink_tq_input>input[type="text"]',
  486. btn: '#linkPassEnter',
  487. preSubmit : function(codebox, cdoebtn, sCode){
  488. setTimeout(function(){
  489. $(cdoebtn).click();
  490. }, 1000);
  491. }
  492. },
  493. 'ctfile.com':{
  494. code : '#passcode',
  495. btn : '[onclick="verify_passcode()"]',
  496. IntervalSubmit : true
  497. },
  498. 'dufile.com':{
  499. PreProcess: function(){
  500. if(/\/down\//.test(location.pathname)) {
  501. var hiddenProperty = 'hidden' in document ? 'hidden' :
  502. 'webkitHidden' in document ? 'webkitHidden' :
  503. 'mozHidden' in document ? 'mozHidden' :
  504. null;
  505. var visibilityChangeEvent = hiddenProperty.replace(/hidden/i, 'visibilitychange');
  506. var onVisibilityChange = function(){
  507. if (!document[hiddenProperty]) {
  508. document.title='被发现啦(*´∇`*) 快来输验证码!';
  509. } else {
  510. alert('DuFile 快来输验证码!');
  511. }
  512. }
  513. document.addEventListener(visibilityChangeEvent, onVisibilityChange);
  514. }
  515. }
  516. },
  517. 'fxpan.com':{
  518. PreProcess:function(){
  519. var Key=$('#key').val(); //文件分享ID
  520.  
  521. var CatPW={'date':Dates(),'sCode':'', unPW:'', 'Src':'', 'Hash':'', "webSrc":'', "webTitle":''};
  522. var CatPW_Data=(GM_getValue('CatPW')!=('undefined')||GM_getValue('CatPW')!==undefined)?GM_getValue('CatPW'):GM_setValue('CatPW',CatPW);
  523.  
  524. if(CatPW_Data['webSrc'].search(Key)>-1) {
  525. var $CatPW_Info=$('<DIV>').attr('id','CatPW_Info');
  526. var $CatPW_Info_unPW=$('<div>').text('解压密码:').append($('<input>').attr({'id':'unPW','title':'点击复制密码'}).css({'margin':'0 10px','width':'150px','text-align':'center'}).val(decodeURIComponent(CatPW_Data.unPW)).click(function(){document.execCommand("SelectAll");document.execCommand("copy");}));
  527. var $CatPW_Info_title=$('<span>').attr({'id':'CatPW_webTitle'}).text('网页标题:'+decodeURIComponent(CatPW_Data.webTitle));
  528. var $CatPW_Info_webSrc=$('<A>').attr({'id':'CatPW_webSrc','href':decodeURIComponent(CatPW_Data.webSrc),'target':'_blank'}).text('网盘来源:'+decodeURIComponent(CatPW_Data.webSrc));
  529. $CatPW_Info.append($CatPW_Info_unPW, '<br>', $CatPW_Info_title,'<br>', $CatPW_Info_webSrc).insertBefore('.file_item.file_desc');
  530. $('.ysbtn').click(function(){
  531. StorageDB(Key).insert(CatPW_Data);
  532. StorageDB().insert(CatPW_Data);
  533. });
  534. }
  535. GM_addStyle('#CatPW_Info{font-size:14px;border:1px solid #06c;padding:5px;display:block;}');
  536. }
  537. },
  538. 'cloud.189.cn':{
  539. chk: /^[a-z0-9]{4}$/i,
  540. code: '#code_txt',
  541. btn: '.btn.btn-primary, .button',
  542. IntervalSubmit : true
  543. },
  544. 'h5.cloud.189.cn':{
  545. code: '.access-code-input',
  546. btn: '.button',
  547. sCode: 'CacheCode',
  548. IntervalSubmit : true
  549. },
  550. 'own-cloud.cn':{
  551. chk: /^[a-z0-9]{4,6}$/i,
  552. pwdRule : /(?:提取|访问)[码碼]?\s*[:: ]?\s*([a-z\d]{4,6})/,
  553. codeRule : /(?:(?:提取|访问|密[码碼]|Extracted-code)[码碼]?)\s*[:: ]?\s*([a-z\d]{4,6})/i,
  554. code:'#inputPassword',
  555. btn:'#submit_pwd'
  556. },
  557. 'pan.xunlei.com': {
  558. chk: /^[a-z0-9]{4}$/i,
  559. code : '[class="td-input__inner"]',
  560. btn : '#__nuxt .td-button',
  561. IntervalSubmit : true
  562. },
  563. 'aliyundrive.com' : {
  564. chk: /^[a-z0-9]{4}$/i,
  565. code : '.ant-input:not(.ant-input-borderless)',
  566. btn : '.button--fep7l',
  567. IntervalSubmit: true,
  568. },
  569. 'jianguoyun.com': {chk: /^\w{4,8}$/i, code : '#access-pwd', btn : '.action-button.ok-button'},
  570. '123pan.com': {
  571. chk: /^\w{4,8}$/i,
  572. code : '.ant-input',
  573. btn : '.ant-input~button, .ca-fot>button',
  574. //IntervalSubmit: true, 采用ajax模拟请求方式访问
  575. preSubmit : function(codebox, cdoebtn, sCode){
  576. let shareKey=location.pathname.replace('/s/', '').replace(/\.html$/i,''), SharePwd=sCode;
  577. localStorage['shareKey']=`"${shareKey}"`;
  578. localStorage['SharePwd']=`"${sCode}"`;
  579. //$.cookie('shareKey', shareKey);
  580. //$.cookie('SharePwd', SharePwd);
  581. //模拟发送获取文件列表请求,以确认是否登录成功
  582. let post_data=$.param({Limit: 100, next: 0, shareKey: shareKey, SharePwd: sCode, orderBy: 'share_id', orderDirection: 'desc',ParentFileId:0, Page:1});
  583. $.ajax({
  584. url: "/api/share/get",
  585. type: "get",
  586. data : post_data,
  587. success: function (result) {
  588. if(result.message && result.message=='ok') {
  589. location.reload();
  590. }
  591. }
  592. }).then(function(result){
  593. //请求成功
  594. });
  595. }
  596. },
  597. 'dubox.com': {chk: /^\w{4,8}$/i, code : '.pwd-box', btn : '.pwd-submit-btn', pwdRule : /Password\s*[:: ]?\s*([a-z\d]{4,6})/i, IntervalSubmit: true},
  598. 'terabox.com': {chk: /^\w{4,8}$/i, code : '.pwd-input', btn : '.pwd-submit-btn', pwdRule : /Password\s*[:: ]?\s*([a-z\d]{4,6})/i, IntervalSubmit: true},
  599. 'bhpan.buaa.edu.cn':{chk: /^\w{4,8}$/i, code : '.password-input', btn : '.button'},
  600. 'disk.simiyun.cn':{
  601. chk: /^\w{4,8}$/i, CodeParam: 'pwd', code : '.pwd-box', btn : '.pwd-submit-btn', pwdRule : /Password\s*[:: ]?\s*([a-z\d]{4,6})/i, IntervalSubmit: true,
  602. PreProcess(codebox, cdoebtn, sCode){
  603. console.log(codebox, codebtn, sCode);
  604. alert('y')
  605. }, preSubmit(codebox, cdoebtn, sCode){
  606. alert('y2');
  607. }
  608. },
  609. },
  610. //跳转链预处理
  611. 'JumpUrl' : {
  612. 'zhihu.com' : {
  613. href: $('A[href*="//link.zhihu.com/?target="]'),
  614. url:/.*\/\/link\.zhihu\.com\/\?target=/
  615. },
  616. 'zhuanlan.zhihu.com' : {
  617. href: $('A[href*="//link.zhihu.com/?target="]'),
  618. url:/.*\/\/link\.zhihu\.com\/\?target=/
  619. },
  620. 'sijihuisuo.club': {
  621. href: $('.down-tip A[href^="https://www.sijihuisuo.club/go/?url="]'),
  622. url: 'https://www.sijihuisuo.club/go/?url='
  623. },
  624. 'nyavo.com':{
  625. href: $('.content a'),
  626. url: 'https://www.nyavo.com/go?url='
  627. },
  628. 'pixiv.net':{href:$('a'), url:'/jump.php?'}
  629. },
  630. //密码融合需要特殊支持的网站
  631. 'Support' : {
  632. 'zhidao.baidu.com': {
  633. path :/question\/\d+.html/,
  634. callback : function(){
  635. let baiduyun=$('baiduyun');
  636. baiduyun.each(function(i, e){
  637. let bdy=$('<a>').attr({'href':$(this).attr('data_sharelink')+'#'+$(this).attr('data_code')}).text($(this).attr('data_title') + "(" +$(this).attr('data_size') + ")");
  638. let filelogo=$('<img>').attr({'src': $(this).attr('data_filelogo'), 'alt': '网盘自动填写访问码(密码融合)', 'title': '网盘自动填写访问码(密码融合)'}).css({'display':'inline-block','width':'32px'});
  639. $(this).after("<br>", "密码融合:", bdy, filelogo);
  640. });
  641. }
  642. },
  643. '115.com': {
  644. path: /home\/detail_view/i,
  645. callback: function(){
  646. //console.log('115 特殊支持');
  647. }
  648. },
  649. 'agefans.tv':{
  650. path: /detail/i,
  651. callback: function(){
  652. $('.res_links_a').each(function(){
  653. var res_links_a = this;
  654. GM_xmlhttpRequest({
  655. method: "get",
  656. url: res_links_a.href,
  657. onload: function (result) {
  658. //console.log('load:', res_links_a.href, result.finalUrl, result);
  659. //console.log(res_links_a);
  660. $(res_links_a).attr({'href': result.finalUrl});
  661. }
  662. });
  663. });
  664. }
  665. },
  666. 'yunpanjingling.com':{
  667. path : /search/i,
  668. callback:function(){
  669. $('.item').each(function(){
  670. var name=$(this).find('.name').text().trim();
  671. var code=$(this).find('.code').text()||'';
  672. var href=$(this).find('.name').find('a');
  673. var referrer=$(this).find('.referrer').find('a');
  674. referrer.attr('href',decodeURIComponent(getQueryString('url',referrer.attr('href'))));
  675. href.attr('href',decodeURIComponent(getQueryString('url',href.attr('href'))));
  676. if(code) href.attr('href',href.attr('href')+'#'+code);
  677. href.click(function(){
  678. var CatPW_Data={'date':Dates(),'sCode':code, unPW:'', 'Src':href.attr('href'), 'Hash':'#'+code, "webSrc":referrer.attr('href'), "webTitle":encodeURIComponent(name)};
  679. sessionStorage['CatPW_Data']=JSON.stringify(CatPW_Data);
  680. })
  681. });
  682. }
  683. },
  684. 'jiluhome.cn' : {
  685. path:/./i,
  686. callback:function(){
  687. var PostID=$.getUrlParam('p', $('link[rel="shortlink"]').attr('href'));
  688. //获取网盘地址
  689. DownAjax('http://www.jiluhome.cn/wp-content/plugins/erphpdown/download.php?postid='+PostID, '#erphpdown-download', function(e){
  690. $(e).find('a[href*="download.php"]').each(function(){
  691. var target=this;
  692. $.ajax({
  693. "url":'http://www.jiluhome.cn/wp-content/plugins/erphpdown/download.php?postid='+PostID+"&url=&key=1",
  694. success:function(d){
  695. target.href=d.match(/window.location=\'([^']+?)\'/i)[1];
  696. }
  697. });
  698. });
  699. $('#erphpdown>center').append(e);//.replaceWith(e);
  700. });
  701. }
  702. },
  703. 'dakashangche.com':{
  704. path:/\/sj\/\d/,
  705. callback:function(){
  706. //console.log('特殊支持');
  707. $('.down-tip>a[href*="du.acgget.com"]').each(function(){
  708. DownAjax(this.href,'.panel-body',function(e){
  709. $(e).appendTo($('#paydown'));
  710. });
  711. });
  712. }
  713. },
  714. 'appinn.com':{
  715. path:/\/[^\/]+\//i,
  716. callback:function(){
  717. //console.log('小众软件特殊支持');
  718. new PreHandle.VM();
  719. }
  720. },
  721. 'meta.appinn.com':{
  722. path:/\/t\/[^/]+\//i,
  723. callback:function(){
  724. new PreHandle.VM();
  725. $('A[href*="pan.baidu.com"],A[href*="eyun.baidu.com"]').each(function(){
  726. $(this).data({'url':this.href}).click(function(e){
  727. location.href=$(this).data('url');
  728. });
  729. });
  730. }
  731. },
  732. 'madsck.com':{
  733. path: /\/resource\/\d+/,
  734. callback:function(){
  735. var ID=$('.btn-download').data('id');
  736. $.ajax({
  737. "url":"http://www.madsck.com/ajax/login/download-link?id="+ID,
  738. method: "GET",
  739. dataType: "json",
  740. success:function(e){
  741. var res=e.resource;
  742. $('.btn-download').css('display','none');
  743. $('<a>').attr({'href':res.resource_link+'#'+res.fetch_code,'target':'_blank','class':'btn-download'}).css({'line-height':'60px','text-align':'center','font-size':'24px'}).text('下载').insertBefore('.btn-download');
  744. }
  745. });
  746. }
  747. },
  748. 'idanmu.com': {
  749. path : /storage\-download/i,
  750. callback : function(){
  751. $('.input-group').each(function(){
  752. $(this).text($(this).text()+$(this).find('input').val());
  753. });
  754. }
  755. },
  756. 'qiuquan.cc':{
  757. path:/./,
  758. callback : function(){
  759. $('#down>a[href*="pan.baidu.com"]').each(function(){
  760. if(!this.hash) {
  761. this.hash=$(this).text().match(/[\((](\w+)[)\)]/i)[1];
  762. }
  763. });
  764. }
  765. },
  766. 'acg44.com':{
  767. //search:['page_id','p'],
  768. path:/download/i,
  769. callback : function(){
  770. site['codeRule']=/(?:(?:提取|访问|密[码碼])[码碼]?)\s*[:: ]?\s*([a-z\d]{4}|[^$]+)/i;
  771. addMutationObserver('#download-container',function(e){
  772. e.some(function(a){
  773. for(var i in a.addedNodes){
  774. var b=a.addedNodes[i];
  775. if(b.className=='animated fadeIn') {
  776. var VerCode=$('[id^="downloadPwd"]').val();
  777. var unZipPW=encodeURIComponent($('[id^="extractPwd"]').val());
  778. var DownUrl=$('#download-container a.btn').attr('href');
  779. if(/pan.baidu.com\/share/i.test(DownUrl)){
  780. $('#download-container a.btn').attr('href',DownUrl+'&unPW='+unZipPW+'&Src='+encodeURIComponent(urls));
  781. } else {
  782. $('#download-container a.btn').attr('href',DownUrl+'#'+VerCode+'&unPW='+unZipPW+'&Src='+encodeURIComponent(urls));
  783. }
  784. }
  785. }
  786. });
  787. });
  788. }
  789. },
  790. 'reimu.net': {
  791. path: /archives/i,
  792. callback: function(){
  793. site['codeRule']=/(?:(?:提取|访问|密[码碼])[码碼]?)\s*[:: ]?\s*([a-z\d]{4}|8酱)/i;
  794. }
  795. },
  796. 'ccava.net': {
  797. path: /post/i,
  798. JumpHref: 'a[href*="/?url="]',
  799. callback: function(){
  800. site['codeRule']=/(?:(?:提取|访问|密[码碼])[码碼]?)\s*[:: ]?\s*([a-z\d]{4,8}|ccava)/i;
  801. }
  802. },
  803. //189天翼云盘支持
  804. 'mebook.cc':{
  805. path: /download.php/i,
  806. callback:function(){
  807. $('a').click(function(){
  808. if(this.hostname=='cloud.189.cn') site['codeRule']=/天翼云盘密码\s*[:: ]?\s*([a-z\d]{4,8})/i;
  809. else site['codeRule']=/百度网盘密码\s*[:: ]?\s*([a-z\d]{4,8})/i;
  810. });
  811. }
  812. },
  813. 'kudm.net':{ //天使动漫
  814. path:/./,
  815. callback:function(){
  816. $('body').on('click','a',function(){
  817. if(this.hostname=='pan.baidu.com') this.hash=$(this).text().replace(/.+(?:[集版]|无修)(\w{4,8})$/,'$1');
  818. });
  819. }
  820. },
  821. 'mikuclub.org':{
  822. path:/\d+/,
  823. callback:function(){
  824. $('.passw').each(function(){
  825. var dl=$(this).parent().next().find('.dl');
  826. dl[0].hash=this.value;
  827. });
  828. }
  829. },
  830. //特殊支持——跳转链处理
  831. '423down.com': {path: /\/\d+\.html/, JumpHref: 'a[href*="/go.php?"]',},
  832. 'dayanzai.me': {path: /\/[^.]+\.html/, JumpHref: '.intro-box a',},
  833.  
  834. //特殊支持——异类访问码融合
  835. //'th-sjy.com':{path:/\/$/, pwdRule:/(?:(?:提取|访问|(?<!解压)密[码碼]|艾|Extracted-code)[码碼]?)\s*[::﹕ ]?\s*([a-z\d]{4,6})/i},//城通网盘6位访问密码,访问码有边界在括号内,使用 codeRuleBorder 规则
  836. 'meijumi.net':{path:/\/\d+\.html/, pwdRule: /(\w{4,8})/},
  837. 'jpsub.com':{path:/\/forum.php|\/thread-\d+/, pwdRule: /(\w{4,8})/, pwdContainer: 'copy_open brs', Fusion: 'bbs'},
  838.  
  839.  
  840. //特殊支持——文本框访问码融合
  841. 'mikuclub.org':{path:/\d+/, input_password: '.password1', input_unzip: '.password_unzip1'},
  842. 'acgjc.com':{path:/storage-download/, input_password: '[id^="theme_custom_storage-"][id$="-download-pwd"]', input_unzip: '[id^="theme_custom_storage-"][id$="-extract-pwd"]'},
  843.  
  844. //特殊支持——下载页面加载
  845. 'sxpdf.com':{path:/\/\d+\.html|\/down.php/,callback:()=>{$('.xz.down').load($('.down>a').attr('href')+' .down-list-box, .down-pass>p');$('a[onclick="copyUrl2()"]').removeAttr('onclick');}},
  846. 'shoucangzhe.top': {
  847. path:/\d+.html|download.php/,
  848. callback: ()=>{
  849. let PostID=$.getUrlParam('p', $('link[rel="shortlink"]').attr('href'))||$.getUrlParam('postid');
  850. if(document.querySelector('.erphpdown-box')) {
  851. $('.erphpdown-box').append($('<div>').load(`/wp-content/plugins/erphpdown/download.php?postid=${PostID}&iframe=1 #erphpdown-download`, ()=>{
  852. GM_addStyle('#erphpdown-download {margin-top:30px!important;padding:20px;} #erphpdown-download .link {display: inline-block;background: #ff5f33;padding: 3px 12px;color: #fff;border-radius: 20px;font-size: 13px;margin: 0 10px}')
  853. $.get(`/wp-content/plugins/erphpdown/download.php?postid=${PostID}&key=1&index=`, e=>{
  854. $('#erphpdown-download a[href*="download.php"]').css({'background': '#33a1ff'}).attr('href', e.match(/https?:\/\/[^']+/).toString());
  855. });
  856. }));
  857. } else if(document.querySelector('.erphpdown-down-btn')) {
  858. $.get(`/wp-content/plugins/erphpdown/download.php?postid=${PostID}&key=1&index=`, e=>{
  859. $('.erphpdown-msg a[href*="download.php"]').css({'background': '#33a1ff'}).attr('href', e.match(/https?:\/\/[^']+/).toString());
  860. });
  861. }
  862. }
  863. },
  864. 'hifini.com': {path: /thread-\d+.htm/,callback: ()=>{$('.alert.alert-success>span').map((i,e)=>{if($(e).css('display')==='none') $(e).remove()});}}, //处理提取码中隐藏的干扰码
  865. 'ygobbs.com': {path: /\/t\/[^/]+\/\d+/, callback: function(){new PreHandle.VM();}},
  866. 'yxssp.com':{
  867. path: /\/\d+.html/,
  868. callback: ()=>{
  869. $('.downlink').load($('.downbtn').attr('href')+" .mr-auto>.list-group-flush a", (r,s,x)=>{
  870. $(`.downlink a`).addClass('downbtn')
  871. let lanzou=$('.downlink a[href*="lanz"]'), lanzouPW=r.match(/蓝奏云盘密码:(\w+)/)[1];
  872. lanzou.attr('href', lanzou.attr('href')+'#'+lanzouPW)
  873.  
  874. })
  875. }
  876. }
  877. }
  878. };
  879.  
  880.  
  881.  
  882. /***** 镜像域名映射 Begin *****/
  883. var HostToList={}, HostToListArr={
  884. YunDisk : {
  885. '123pan.com':['123684.com'],
  886. 'ctfile.com':['089u.com','089m.com','down.sxpdf.com'],
  887. 'lanzou.com': ['lanzou[a-z].com','lanzn.com','woozooo.com'],
  888. 'disk.simiyun.cn':['disk.bestcloud.cn']
  889. },
  890. Support : {
  891. 's-dm.com':['fodm.net'],
  892. 'reimu.net':['blog.reimu.net'],
  893. 'idanmu.com':['idanmu.co','idanmu.ch','idanmu.at'],
  894. 'shoucangzhe.top':['shoucangzhe8.top','scz666.top','scz888.top'],
  895. 'meijumi.net':['meijumi.top'],
  896. }
  897. },
  898. HostExpJSON={
  899. }
  900.  
  901. for(let key in HostToListArr){
  902. HostToList[key]={};
  903. for(let key_i in HostToListArr[key]) {
  904. let key_host=HostToListArr[key][key_i];
  905. for(let key_j=0;key_j<key_host.length;key_j++){
  906. HostToList[key][key_host[key_j]]=key_i;
  907. }
  908. }
  909. }
  910.  
  911. //扩展镜像域名到主 YunDisk 列表
  912. for(let key in HostToList['YunDisk']) {
  913. site['YunDisk'][key]=site['YunDisk'][HostToList['YunDisk'][key]];
  914. }
  915.  
  916. //站点存在则加入到 Site 中
  917. if(HostToList['YunDisk'][host]) site['YunDisk'][host]=site['YunDisk'][HostToList['YunDisk'][host]];
  918. else if(HostToList['Support'][host]) site['Support'][host]=site['Support'][HostToList['Support'][host]];
  919. else if(/yunpan.360.cn/.test(host)) host='yunpan.360.cn'; //如果是360云盘,重设主域名Host
  920. //else if(/lanzou[a-z].com/i.test(host)) host='lanzou.com'; //如果是蓝凑网盘,重设主域名Host
  921. //console.warn('CheckHostToList: ', host, HostToList['Support'][host], site['Support'][HostToList['Support'][host]]);
  922. /***** 镜像域名映射 End *****/
  923.  
  924.  
  925. let conf = site['YunDisk'][host]; //设置主域名
  926. const SupportHost=site['Support'][host]; //特别支持网站
  927.  
  928. /* -----===== 生成正则,校验匹配的网盘 Start =====----- */
  929. let HostArr = []; //生成域名数组
  930. for(let i in site['YunDisk']) HostArr.push(i); //插入域名对象数组
  931. for(let i in HostToList['YunDisk']) HostArr.push(i); //插入域名对象数组
  932. let HostExp = new RegExp(HostArr.join("|"),'i'); //生成支持网盘的校验正则,进行密码融合
  933. for(let i in HostToList['YunDisk']) HostArr.push(i);
  934. let HostSelector = HostArr.map(HostI => `[href*="${HostI}"]`);
  935. /* -----===== 生成正则,校验匹配的网盘 End =====----- */
  936.  
  937. msg(`网盘域名正则表:${HostExp}`);
  938.  
  939. /* -----===== 检查是否需要处理跳转链 Start =====----- */
  940. //console.log(site.JumpUrl[host]);
  941. if(site['JumpUrl'][host]){
  942. msg(`跳转链处理:${site['JumpUrl'][host]['href']}`);
  943. if(site['JumpUrl'][host]['Observer']) {
  944. console.warn('跳转链处理 —— 监听页面变化')
  945. addMutationObserver(site['JumpUrl'][host]['Observer']['watch'], site['JumpUrl'][host]['Observer']['fn']);
  946. } else {
  947. site['JumpUrl'][host]['href'].each(function(){
  948. //console.log(site['JumpUrl'][host]['rep']);
  949. $(this).attr({'href':decodeURIComponent($(this).attr('href').replace(site['JumpUrl'][host]['url'],'')),'target':'_blank'});
  950. });
  951. }
  952. }
  953. /* -----===== 检查是否需要处理跳转链 End =====----- */
  954. //console.warn('checkSite: ', site, 'YunDisk:', site['YunDisk'], site['YunDisk'][host], 'Support: ', site['Support'], site['YunDisk'][host]);
  955. //console.warn('checkHost: ', host, conf, 'HostToList: ', HostToList);
  956.  
  957. /* -----===== 检查是否为网盘页面 Start =====----- */
  958. msg({
  959. host: host,
  960. conf: conf,
  961. siteList: site['YunDisk'],
  962. supportHostList: SupportHost,
  963. supportHost:SupportHost && SupportHost['path'].test(paths),
  964. })
  965. //网盘页面填密码登录
  966. if(!(SupportHost && SupportHost['path'].test(paths)) && conf && (!conf.exclude || !conf.exclude.test(location.pathname))){
  967. //地址栏含(提取码:)处理为 #
  968. if(/(%E5%AF%86%E7%A0%81|%E6%8F%90%E5%8F%96%E7%A0%81)/i.test(location.search)) {
  969. let newBaiDuPanUrl=location.href.replace(/(?:%20)?(?:%EF%BC%88)?(?:(?:%E8%AE%BF%E9%97%AE)?%E5%AF%86%E7%A0%81|%E6%8F%90%E5%8F%96%E7%A0%81)(?:%EF%BC%9A|:)?(?:%20)?(\w+)(?:%20)?(?:%EF%BC%89)?/i, '#$1'); // 空格+括号+(密码|提取码)+冒号+空格+反括号
  970. if(/\#\w{4,8}/.test(newBaiDuPanUrl)) location.href=newBaiDuPanUrl;
  971. }
  972.  
  973. // 抓取提取码
  974. if(conf.PreProcess) conf.PreProcess(); //内容预处理
  975. let StorageCode = conf.surl ? StorageDB('Share_'+conf.surl()).find('sCode') : null, //从缓存中读取提取码
  976. HashCode = /^#/.test(hash) && !/\//i.test(hash) ? hash.match(/^#([^&]+)&?/)[1] : '', //从Hash中读取提取码
  977. CodeParam = conf.CodeParam ? $.getUrlParam(conf.CodeParam) : '', //从地址参数中读取提取码(115网盘支持)
  978. ASCII_Param_Code = /(%E5%AF%86%E7%A0%81|%E6%8F%90%E5%8F%96%E7%A0%81)/i.test(location.search) ? location.search.match(/(?:%E8%AE%BF%E9%97%AE%E5%AF%86%E7%A0%81|%E6%8F%90%E5%8F%96%E7%A0%81)(?:%EF%BC%9A|:)?(?:%20)?(\w+)/i)[1] : '',
  979. CacheCode = GM_getValue('CatPW').Hash.replace('#','');
  980.  
  981. let sCode = CodeParam ? CodeParam : (conf.sCode && conf.sCode=='CacheCode') ? CacheCode : (((StorageCode&&StorageCode==HashCode)||(HashCode=='')) ? StorageCode : HashCode)||ASCII_Param_Code;
  982. //顺序:CodeParam、conf.sCode=CacheCode、StorageCode=HashCode、HashCode、ASCII_Param_Code
  983.  
  984. // 调试用,检查是否为合法格式
  985.  
  986. if (!sCode) msg('没有 Key 或格式不对');
  987. else msg('抓取到的提取码: ', sCode);
  988. msg('code: ', $(conf.code), 'btn: ', $(conf.btn))
  989.  
  990. if(conf.IntervalSubmit) { //延时提交,访问码框动态加载,需检测访问码框后才触发提交操作
  991. let IntervalSubmit_Step=0, t=setInterval(function() {
  992. msg('间隔提交方式,访问码:', sCode, $(conf.code).val());
  993. IntervalSubmit_Step++;
  994. if($(conf.btn).length>0 && sCode) {
  995.  
  996. let CodeInput = document.querySelector(conf.code);
  997.  
  998. if(CodeInput._valueTracker) { //兼容 u.React 方法
  999. let PWD_lastValue=CodeInput.value;
  1000. CodeInput.value=sCode;
  1001. CodeInput._valueTracker.setValue(PWD_lastValue);
  1002. } else
  1003. $(conf.code).val(sCode);
  1004.  
  1005. if($(conf.code).val()!=='') {
  1006. if(typeof(InputEvent)!=='undefined') {
  1007. //使用 InputEvent 方法,主流浏览器兼容
  1008. CodeInput.dispatchEvent(new InputEvent("input", {bubbles: true})); //模拟事件
  1009. } else if(KeyboardEvent) {
  1010. //使用 KeyboardEvent 方法,ES6以下的浏览器方法
  1011. $(conf.code).get(0).dispatchEvent(new KeyboardEvent("input", {bubbles: true}));
  1012. }
  1013. clearInterval(t);
  1014. //$(conf.btn).click();
  1015.  
  1016. $(conf.btn).get(0).dispatchEvent(new MouseEvent("click"));
  1017. //new MouseEvent("click", {bubbles: true,cancelable: true,view: window});
  1018.  
  1019. if(conf.preSubmit) conf.preSubmit (conf.code, conf.btn, sCode); //特殊提交方式
  1020. }
  1021. } else if(!sCode) clearInterval(t);
  1022. else if(IntervalSubmit_Step>10) clearInterval(t); //限制延时提交尝试次数
  1023. }, 1000);
  1024. }
  1025. else if($(conf.btn).length>0) { //存在提交按钮时才触发填写操作
  1026. // 加个小延时
  1027. setTimeout (function(){
  1028. // 键入提取码并单击「提交」按钮,报错不用理。
  1029. var codeBox = $(conf.code),
  1030. btnOk = $(conf.btn);
  1031. msg('提交访问:',codeBox, btnOk);
  1032. if (conf.preSubmit) { //特殊提交方式
  1033. msg('preSubmit 特殊提交方式');
  1034. codeBox.val(sCode); //填写验证码
  1035. btnOk.click(); //先尝试常规提交
  1036. conf.preSubmit (conf.code, conf.btn, sCode); //最后尝试预处理方案,可能需要页面 ready 才能生效
  1037. }
  1038. else if(codeBox.length>0) { //存在密码框时才进行密码提交操作
  1039. msg('正常提交')
  1040. codeBox.val(sCode); //填写验证码
  1041. if(codeBox.val()) btnOk.click();
  1042. }
  1043. }, 10);
  1044. }
  1045.  
  1046. /* -----===== 检查是否为网盘页面 End =====----- */
  1047. } else {
  1048. //密码融合 特别支持的网站
  1049. if(SupportHost&&(SupportHost['path']?SupportHost['path'].test(paths):getQueryString(SupportHost['search']))) {
  1050. if(SupportHost.input_password) $(SupportHost.input_password).text($(SupportHost.input_password).val()); //转化 input 提取码内容,添加文本
  1051. if(SupportHost.input_unzip) {
  1052. $(SupportHost.input_unzip).text($(SupportHost.input_unzip).val()); //转化 Input 解压密码内容,添加文本
  1053. SupportHost.unzip=$(SupportHost.input_unzip).val();
  1054. }
  1055. if(SupportHost.JumpHref) { //用于处理被加密的跳转链
  1056. $(SupportHost.JumpHref).each(function(){
  1057. let txt=$(this).text().trim();
  1058. //let JumpHrefSearch=new URLSearchParams(this.search);
  1059. //如果目标链接的“文本”为超链接
  1060. if(/^https?:\/\/[^/]+\/.+/i.test(txt)) {//(baidu|lanzou.?|pcloud|189)
  1061. $(this).attr('href', txt);
  1062. } else if(/点击下载/i.test(txt)){ //把纯文本替换为链接
  1063. $(this).text(this.href);
  1064. }
  1065. });
  1066. }
  1067. if(SupportHost.pwdRule) site.pwdRule=SupportHost.pwdRule;
  1068. if(SupportHost.AccessPW) {
  1069. switch(SupportHost.AccessPW) {
  1070. case 'nextSibling':
  1071. $(HostSelector).each((i,x) => {
  1072. //console.log(this, x);
  1073. });
  1074. }
  1075. }
  1076. if(SupportHost.callback) SupportHost.callback();
  1077. }
  1078.  
  1079. let PreHandle={ //内容预处理
  1080. Text : function(text){ //预处理含解码密码的文本
  1081. text=text?typeof(text)=="string"?text.trim():text.textContent.trim():null;
  1082. text=text?text.replace('本帖隐藏的内容',''):null; //文本内容预处理,提高DZ论坛的匹配率
  1083. text=text?text.replace(/([\[【]?解[压壓]|[压壓][缩縮])密[码碼][\]】]?\s*[:: ]?(?:&nbsp;?)\s*([a-z\d]{4}|[^\n]+)/ig,''):null;
  1084. return text;
  1085. },
  1086. Code : function(obj){ //密码有效性校验
  1087. let text=this.Text(obj);
  1088. if(!text) return;
  1089. /**
  1090. * PreHandle.Code
  1091. * @params {string} pwdRule 提取码|访问码
  1092. * @params {string} codeRuleBorder 带边界的其它类型访问码
  1093. * @params {string} codeRule 无边界的其它类型访问码
  1094. * @description 依上述顺序匹配访问码关键字
  1095. =====*/
  1096. let pw=site['pwdRule'] && site['pwdRule'].test(text) ? text.match(site['pwdRule'])[1] : site['codeRuleBorder']&&site['codeRuleBorder'].test(text) ? text.match(site['codeRuleBorder'])[1] : site['codeRule']&&site['codeRule'].test(text) ? text.match(site['codeRule'])[1]:null;
  1097. msg('尝试获取提取码:', text, site['pwdRule'], site['codeRule']);
  1098. return pw;
  1099. },
  1100. coercive : (target, pass)=>target.href+=`#${pass}`,
  1101. Fusion : function(target, obj){ //融合密码
  1102. let sCode = this.Code(obj);
  1103. msg({
  1104. targetHash: target.hash,
  1105. sCode : sCode
  1106. })
  1107. if(!target.hash) {
  1108. target.href+=`#${sCode}`;
  1109. }
  1110. },
  1111. VM : function(){ //暴力匹配
  1112. let Link=$('A[href*="pan.baidu.com"],A[href*="eyun.baidu.com"]');
  1113. for(i=0;i<Link.length;i++){
  1114. let LinkParent=$(Link[i]).parent();
  1115. let LinkParentHtml=LinkParent.html();
  1116. if(PreHandle.Code(LinkParentHtml)) Link[i].href+='#'+PreHandle.Code(LinkParentHtml);
  1117. }
  1118. },
  1119. PassWord : function(CatPW_Data){
  1120. if(StorageSave) {
  1121. if(SupportHost && SupportHost.unzip) { //如果存在特殊支持网站,内置解压密码文本框,则使用特殊支持网站的规则
  1122. msg('特殊网站“解压密码”规则:'+SupportHost.input_unzip, '解压密码提取:'+SupportHost.unzip);
  1123. CatPW_Data.unPW=encodeURIComponent(SupportHost.unzip);
  1124. } else { //否则遍历网站提取解压密码
  1125.  
  1126. let unPWArr=[
  1127. /[^\w]password(?!=")?([^\n]+)/igm, //passwordd 开头的文本
  1128. /解压[:: ]?(\w+)/gm,
  1129. /【解[压壓]密[码碼]】\s*[:: ]?\s*(\w+)/igm,
  1130. /【解[压壓]密[码碼]】\s*[:: ]?\s*([^\r\n]+)/igm,
  1131. /\[解[压壓]密[码碼]\]\s*[:: ]?\s*([a-z\d\.:/@]+)/igm, //http://www.itokoo.com/
  1132. /(?:解[压壓]密?[码碼])\s*[:: ]?\s*([a-z\d\.:/@]+)(?!-)\b/igm,
  1133. /(?:解[压壓]密?[码碼])(?:都?是|为)\s*[:: ]?\s*([\w\.:/@]+)[^$\r\n]/igm,
  1134. /(?:解[压壓]密?[码碼])(?:都?是|为)\s*[:: ]?\s*([^\w]+)[^$\r\n]/igm, //中文类
  1135. /【?压缩密码】?\s*[:: ]?\s*([^\n]+)/igm,
  1136. /【?[資资]源密[码碼]】?:(\w+)/ //来源:http://www.abcmm.co
  1137. ];
  1138. let bodyText=document.body.innerText, bodyHtml=document.body.outerHTML,
  1139. BodyHtml_Processing=document.body.outerHTML.replace(/\b[-\w]+=['"]?[^'"]+['"]?/ig,'');
  1140. for(let i=0;i<unPWArr.length;i++) {
  1141. let unPWTemp=unPWArr[i].exec(bodyText)||unPWArr[i].exec(BodyHtml_Processing)||unPWArr[i].exec(document.body.textContent);
  1142. if(unPWTemp) {
  1143. msg(i, '规则:'+unPWArr[i], '解压密码提取:'+encodeURIComponent(unPWTemp[1]), '所有结果:'+unPWTemp);
  1144. CatPW_Data.unPW=encodeURIComponent(unPWTemp[1]);
  1145. break;
  1146. }
  1147. }
  1148. }
  1149. if(sessionStorage['CatPW_Data']) GM_setValue('CatPW', JSON.parse(sessionStorage['CatPW_Data']));
  1150. else GM_setValue('CatPW', CatPW_Data);
  1151. msg('GM_getValue', GM_getValue('CatPW'));
  1152. }
  1153. },
  1154. EachSibling : function($parent, $target, pi, $sibling, $i, $max){
  1155. console.group('=== 同级元素遍历模式 第 ' + pi + ' 次 ===');
  1156. var dz_i=$i||1, dz_maxParent = $max||5, dz_sibling=5||$sibling, dz_parent=$parent;
  1157. while(dz_i<=dz_maxParent){
  1158. console.group('=== Part2. 同级元素遍历模式 第 ' + dz_i + ' 个父元素 ===');
  1159. msg('%c === 同级元素遍历模式 向上遍历 '+dz_maxParent+' 次 同级元素 '+dz_sibling+' 个 第 ' + dz_i +' 个父元素 ===', 'color: yellow');
  1160. msg('目标:', dz_parent, dz_parent.tagName);
  1161. if($parent.tagName!=='FONT') {
  1162. dz_i++;
  1163. } else {
  1164. msg('不计算父元素 ' + $parent.tagName + ' 节点');
  1165. }
  1166. var dz_si=1, dz_nextSibling=dz_parent.nextSibling;//获得节点的兄弟节点
  1167. while(dz_si<=dz_sibling){
  1168. msg(' 第 ' + dz_si + ' 个同级元素', dz_nextSibling);
  1169. if(dz_nextSibling) { //检测同级元素是否存在
  1170. if(PreHandle.Code(dz_nextSibling)) {
  1171. console.groupEnd('=== Part2. 同级元素遍历模式 ===');
  1172. console.groupEnd('--- 普通父级遍历模式 ----');
  1173. PreHandle.Fusion($target, dz_nextSibling);
  1174. return;
  1175. }
  1176. } else {
  1177. msg(' 在目标元素查找 ', PreHandle.Code(dz_parent));
  1178. if(dz_parent==document.body) return;
  1179. if(PreHandle.Code(dz_parent)) {
  1180. console.groupEnd('=== 同级元素遍历模式 End ===');
  1181. console.groupEnd('--- 普通父级遍历模式 End ----');
  1182. PreHandle.Fusion($target, dz_parent);
  1183. return true;
  1184. }
  1185. break;
  1186. }
  1187. //console.groupEnd('=== 同级元素遍历模式 End ===');
  1188. console.groupEnd('--- 普通父级遍历模式 End ----');
  1189. dz_si++;
  1190. dz_nextSibling=dz_nextSibling.nextSibling;
  1191. }
  1192.  
  1193. dz_parent=dz_parent.parentNode;
  1194. msg(dz_parent);
  1195. console.groupEnd('--- 普通父级遍历模式 ----');
  1196. }
  1197. console.groupEnd('=== 同级元素遍历模式 ===');
  1198. }
  1199. };
  1200.  
  1201. //监听 A 标签点击事件
  1202. $('body').on('click', 'a', function (e) {
  1203. let target=this, CatPW_Data,
  1204. thisHost=this.host.toLowerCase().replace(/^(?:www|pan)\.(?!baidu.com)/i,'');
  1205. //thisHost=thisHost.replace(/^\w+\.(?=lanzou)/,'').replace(/(?<=lanzou)[a-z]?/i,''); //蓝凑云网盘地址变体处理
  1206.  
  1207. msg(`密码融合点击监听`, thisHost);
  1208.  
  1209. //提升密码匹配范围,以兼容部分网盘
  1210. if(site['YunDisk'][thisHost] && site['YunDisk'][thisHost]['pwdRule']) {
  1211. site['pwdRule']=site['YunDisk'][thisHost]['pwdRule'];
  1212. }
  1213. if(site['YunDisk'][thisHost] && site['YunDisk'][thisHost]['codeRule']) {
  1214. site['codeRule']=site['YunDisk'][thisHost]['codeRule'];
  1215. }
  1216.  
  1217. if(HostExp.test(this.href)){
  1218. if(Control_newTag) this.target='_blank'; //新页面打开网盘
  1219. this.href=this.href.replace(/#$/,''); //处理链接末尾的hash标记
  1220. this.href=this.href.replace(/(?:%20)?(?:%EF%BC%88)?(%E8%AE%BF%E9%97%AE%E5%AF%86%E7%A0%81|%E6%8F%90%E5%8F%96%E7%A0%81)(?:%EF%BC%9A)?\w+(?:%EF%BC%89)?/i, ''); //处理掉链接中包含这些文本——“ (?:()?(访问密码|提取码)(?::)?\d+(?:))?”)
  1221. //初始化信息记录变量
  1222.  
  1223. CatPW_Data={'date':Dates(),'sCode':'', unPW:'', 'Src':this.href, 'surl':'', 'Hash':this.hash, "webSrc":encodeURIComponent(urls), "webTitle":encodeURIComponent(document.title)};
  1224.  
  1225. msg(CatPW_Data);
  1226.  
  1227. if((this.hash && !this.hash.includes('/')) || /115.com\/s\/.+\?password/i.test(this.href)) { //如果超链接已有 hash ,或者 115 网盘的 password 参数,则跳过密码融合
  1228. msg('密码已融合,跳过密码融合步骤');
  1229. if(sessionStorage['CatPW_Data']) GM_setValue('CatPW', JSON.parse(sessionStorage['CatPW_Data']));
  1230. else GM_setValue('CatPW', CatPW_Data);
  1231. PreHandle.PassWord(CatPW_Data); //融合解压密码
  1232. return;
  1233. } else if(this.hash && this.hash.includes('/')){
  1234. //目标有Hash,但是不是提取码,则采用gmVal方案缓存密码,未完成
  1235. //CatPW_Data.sCode = sCode;
  1236. //GM_setValue('CatPW', CatPW_Data)
  1237. }
  1238. console.group(' ===== 网盘自动填写密码 密码融合 =====');
  1239.  
  1240. //选定密码强制融合
  1241. if(window.getSelection().toString()) {
  1242. msg('强制融合密码')
  1243. let slc=window.getSelection().toString();
  1244. //选中的内容为纯英文数字时,直接融合为访问码
  1245. if(!/[^\w]/.test(slc)&&/^\w+$/.test(slc)&&slc.length<=8) {
  1246. PreHandle.coercive(target, slc)
  1247. } else if(PreHandle.Code(slc)) {
  1248. PreHandle.Fusion(target, slc)
  1249. }
  1250. }
  1251.  
  1252. //论坛兼容模式
  1253. if($.getUrlParam('mod')=='viewthread'&&$.getUrlParam('tid')&&$('.showhide').length>0||u.discuz_uid){
  1254. if($(target).next().hasClass("showhide") && PreHandle.Code(target.nextElementSibling)) {
  1255. msg('论坛特殊兼容模式 - 从链接后隐藏内容中查找密码');
  1256. PreHandle.Fusion(target, target.nextElementSibling);
  1257. } else if(SupportHost && SupportHost.Fusion) {
  1258. msg('论坛特殊兼容模式 - 密码在超链接后面的兄弟对象中');
  1259. let nextTager=target.nextElementSibling;
  1260. if(SupportHost.pwdContainer) {
  1261. while(nextTager) {
  1262. nextTager=nextTager.nextElementSibling;
  1263. if(nextTager.className==SupportHost.pwdContainer) break;
  1264. }
  1265. }
  1266. PreHandle.Fusion(target, nextTager);
  1267. }
  1268. }
  1269.  
  1270. //常规匹配模式
  1271. if(PreHandle.Code(target)) {
  1272. msg('在当前超链接的对象中查找密码');
  1273. PreHandle.Fusion(target, target);
  1274. } else if(PreHandle.Code(target.nextSibling)){
  1275. msg('密码在超链接后面的兄弟元素中');
  1276. PreHandle.Fusion(target, target.nextSibling);
  1277. } else if(PreHandle.Code(target.parentNode)){
  1278. msg('从父对象中查找密码', target.parentNode);
  1279. PreHandle.Fusion(target, target.parentNode);
  1280. } else {
  1281. console.group('--- 普通父级遍历模式 ----');
  1282. var i = 0,
  1283. maxParent = 5, //向上遍历的层级
  1284. parent = target,
  1285. $parent = parent;
  1286. while(i<maxParent) {
  1287. i++; //遍历计数
  1288. parent = parent.parentNode; //取得父对象
  1289. msg('遍历上级目录查找密码:'+ i, parent);
  1290. if(parent.tagName=="TR") { //如果父对象是表格,则从表格中提取密码
  1291. if(PreHandle.Code(parent.nextElementSibling)) {
  1292. parent=parent.nextElementSibling;
  1293. msg('表格中查找密码成功!',parent);
  1294. PreHandle.Fusion(target, parent);
  1295. break;
  1296. }
  1297. } else {
  1298. var EachSiblingResult=PreHandle.EachSibling($parent, target, i); //同级遍历函数
  1299. if(EachSiblingResult) break; //遍历取得结果,停止遍历
  1300.  
  1301. $parent=parent.parentNode; //取得上一级父对象
  1302. if(maxParent>5) {
  1303. msg('已超出遍历范围');
  1304. }
  1305. }
  1306. if(parent==document.body) break; //如果已经遍历到最顶部
  1307. }
  1308. console.groupEnd('--- 普通父级遍历模式 ----');
  1309. }
  1310.  
  1311. CatPW_Data.Hash=this.hash;
  1312. PreHandle.PassWord(CatPW_Data); //融合解压密码
  1313. }
  1314. console.groupEnd();
  1315. });
  1316. }
  1317.  
  1318. function msg(text){
  1319. let obj = (e)=>{
  1320. }
  1321. if(msgControl) {
  1322. //console.log('arguments.length', arguments.length, arguments);
  1323. if(arguments.length>1) {
  1324. let args=Array.prototype.slice.call(arguments)
  1325. console.log(args);
  1326. } else if(Object.prototype.toString.call(text).includes('Object')){
  1327. console.table(text);
  1328. }
  1329. else {
  1330. console.log(text);
  1331. }
  1332. }
  1333. }
  1334.  
  1335. function addMutationObserver(selector, callback, Kill) {
  1336. var watch = document.querySelector(selector);
  1337.  
  1338. if (!watch) {
  1339. return;
  1340. }
  1341. var observer = new MutationObserver(function(mutations){
  1342. var nodeAdded = mutations.some(function(x){ return x.addedNodes.length > 0; });
  1343. if (nodeAdded) {
  1344. callback(mutations);
  1345. if(Kill) {
  1346. msg('停止'+selector+'的监控');
  1347. observer.disconnect();
  1348. }
  1349. }
  1350. });
  1351. observer.observe(watch, {childList: true, subtree: true});
  1352. }
  1353.  
  1354. function getQueryString(name,url) {//筛选参数
  1355. var reg, str;
  1356. url=url?url.match(/[?#].*/).toString():location.search; //网址传递的参数提取,如果传入了url参数则使用传入的参数,否则使用当前页面的网址参数
  1357.  
  1358. if(Array.isArray(name)){
  1359. for(var i in name){
  1360. reg = new RegExp("(?:^|&)(" + name[i] + ")=([^&]*)(?:&|$)", "i"); //正则筛选参数
  1361. str = url.substr(1).match(reg);
  1362. if (str !== null) return unescape(str[2]);
  1363. }
  1364. } else {
  1365. reg = new RegExp("(?:^|&)(" + name + ")=([^&]*)(?:&|$)", "i"); //正则筛选参数
  1366. str = url.substr(1).match(reg);
  1367. if (str !== null) return unescape(str[2]);
  1368. }
  1369. return null;
  1370. }
  1371.  
  1372. function StorageDB(collectionName) {
  1373. //如果没有 集合名,则使用默认 default
  1374. collectionName = collectionName ? collectionName : 'default';
  1375. //创建JSON缓存,如果缓存存在,则转为JSON,否则新建
  1376. var cache = localStorage[collectionName] ? JSON.parse(localStorage[collectionName]) : {};
  1377.  
  1378. return {
  1379. add : function(name, value) {
  1380. cache[name]=value;
  1381. localStorage.setItem(collectionName, JSON.stringify(cache)); //回写 localStorage
  1382. },
  1383. del:function(name) {
  1384. if(name) {
  1385. msg(cache, cache[name]);
  1386. delete cache[name];
  1387. localStorage.setItem(collectionName, JSON.stringify(cache)); //回写 localStorage
  1388. } else {
  1389. //删除整个 localStorage 数据
  1390. localStorage.removeItem(name);
  1391. }
  1392. },
  1393. insert: function(obj){
  1394. localStorage.setItem(collectionName, JSON.stringify(obj));
  1395. },
  1396. Updata : function(name,obj,value){
  1397. cache[obj]=cache[obj]||{};
  1398. cache[obj][name]=value;
  1399. localStorage.setItem(collectionName, JSON.stringify(cache)); //回写 localStorage
  1400. },
  1401. Query : function(obj,name){
  1402. return cache[obj]?name?(cache[obj][name]?cache[obj][name]:null):cache[obj]:null;
  1403. },
  1404. find : function(name) {
  1405. if(!collectionName) return false;
  1406. return cache[name];
  1407. },
  1408. read : function(){
  1409. return $.isEmptyObject(cache)?null:cache;//如果为空,则返回 null
  1410. },
  1411. deleteExpires : function(now){
  1412. now=now||$.now();
  1413. for(var i in cache) {
  1414. //console.log(i, collectionName, now, cache[i]['exp'], now>cache[i]['exp']); //删除记录显示
  1415. //console.log(cache[i], localStorage[i]);
  1416. if(now>cache[i]['exp']) {
  1417. delete localStorage[i]; //删除对应分享 ID 的记录
  1418. this.del(i); //删除时间表中的记录
  1419. }
  1420. }
  1421. }
  1422. };
  1423. }
  1424.  
  1425. function DiskInfo(Key, target, Prepocess){
  1426. //Key文件分享ID
  1427. var insertTarget=target, //信息插入的目标位置
  1428. CatPW_Data,
  1429. CatPW_Format={'date':Dates(),'sCode':'', unPW:'', 'Src':'', 'Hash':'', "webSrc":'', "webTitle":''};
  1430.  
  1431. //初始化 getValue 数据
  1432.  
  1433. if(StorageDB(Key).read()) {
  1434. GM_setValue('CatPW', StorageDB(Key).read());
  1435. CatPW_Data=StorageDB(Key).read();
  1436. } else if(GM_getValue('CatPW')=='undefined'||GM_getValue('CatPW')===undefined) {
  1437. GM_setValue('CatPW', CatPW_Format); //初始化
  1438. } else {
  1439. CatPW_Data=GM_getValue('CatPW');
  1440. }
  1441. if(Prepocess) Prepocess(CatPW_Data, Key);
  1442.  
  1443. if((CatPW_Data['Src'].search(Key)>-1||CatPW_Data['FileID']==Key)&&$('#CatPW_Info').length<1) {
  1444. var $CatPW_Info=$('<DIV>').attr('id','CatPW_Info');
  1445. var $CatPW_Info_unPW=$('<div>').text('解压密码:').append($('<input>').attr({'id':'unPW','title':'点击复制密码'}).css({'margin':'0 10px','width':'150px','text-align':'center'}).val(decodeURIComponent(CatPW_Data.unPW)).click(function(){document.execCommand("SelectAll");document.execCommand("copy");}).change(function(){
  1446. StorageDB(Key).add('unPW',encodeURIComponent(this.value));
  1447. CatPW_Data.unPW=encodeURIComponent(this.value);
  1448. GM_setValue('CatPW', CatPW_Data);
  1449. }));
  1450. var $CatPW_Info_title=$('<span>').text('网页标题:').append($('<input>').attr({'id':'CatPW_webTitle','title':'内容修改自动保存'}).val(decodeURIComponent(CatPW_Data.webTitle)).css({'margin':'0 10px','padding':'0 2px','min-width':'450px'}).show(function(){
  1451. $(this).css({'width':this.value.length*15});
  1452. }).change(function(){
  1453. StorageDB(Key).add('webTitle',encodeURIComponent(this.value));
  1454. }));
  1455. var $CatPW_Info_webSrc=$('<A>').attr({'id':'CatPW_webSrc','href':decodeURIComponent(CatPW_Data.webSrc),'target':'_blank'}).text('网盘来源:'+decodeURIComponent(decodeURIComponent(CatPW_Data.webSrc)));
  1456. var $CatPW_Info_DeleteBtn=$('<button>').text('删除记录').val('删除记录').css({'display':'inline-block'}).click(function(){
  1457. delete localStorage[Key];
  1458. GM_setValue('CatPW', CatPW_Format);
  1459. this.disabled=true;
  1460. });
  1461. $CatPW_Info.append($CatPW_Info_unPW.append($CatPW_Info_DeleteBtn), '<br>', $CatPW_Info_title,'<br>', $CatPW_Info_webSrc).insertBefore(insertTarget);
  1462. StorageDB(Key).insert(CatPW_Data);
  1463. } else {
  1464. $('<div>').append('当前记录网盘地址为:',$('<A>').attr({'href':CatPW_Data.Src,'target':'_blank'}).text(CatPW_Data.Src),' 与当前网盘不符').insertBefore(insertTarget);
  1465. }
  1466. GM_addStyle('#CatPW_Info{font-size:14px;border:1px solid #06c;padding:5px;display:block;}');
  1467. }
  1468.  
  1469. function DownAjax(urls, selection,callback){
  1470. GM_xmlhttpRequest({
  1471. method: "GET",
  1472. url: urls,
  1473. onload: function (result) {
  1474. var parsetext = function(text){
  1475. var doc = null;
  1476. try {
  1477. doc = document.implementation.createHTMLDocument("");
  1478. doc.documentElement.innerHTML = text;
  1479. return doc;
  1480. }
  1481. catch (e) {
  1482. alert("parse error");
  1483. }
  1484. };
  1485. var Down;
  1486. var doc = parsetext(result.responseText);
  1487. var t = $(doc).find(selection);
  1488. callback(t);
  1489. }
  1490. });
  1491. }
  1492.  
  1493. function Dates(){
  1494. var sDate=new Date();
  1495. return sDate.getFullYear()+'/'+(sDate.getMonth()+1)+'/'+sDate.getDate();
  1496. }
  1497.  
  1498.  
  1499. function Fn_MessageUI(content){
  1500. GM_addStyle(`
  1501. #MessageUI {
  1502. width: 100%;
  1503. position: fixed;
  1504. left: 0;
  1505. top: 0;
  1506. z-index: 99999999;
  1507. pointer-events: none;
  1508. }
  1509. #MessageUI * {
  1510. pointer-events: auto;
  1511. }
  1512. #MessageUI_Btn {
  1513. position: relative;
  1514. margin: 0 auto;
  1515. padding: 1px 0;
  1516. width: 100px;
  1517. height: 16px;
  1518. color: #000;
  1519. font-size: 12px;
  1520. line-height: 10px;
  1521. cursor: pointer;
  1522. text-align: center;
  1523. border: 1px solid #AAA;
  1524. border-radius: 0 0 12px 12px;
  1525. background-color: #fff;
  1526. box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  1527. }
  1528. #MessageUI_Btn:hover {
  1529. color: rgba(0, 0, 0, .8);
  1530. background-color: rgba(255, 255, 255, 0.8);
  1531. }
  1532. #MessageUI_Panel {
  1533. display: none;
  1534. border-top: 5px solid #65adff;
  1535. background-color: #FFF;
  1536. box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  1537. }
  1538. #MessageUI_Panel > #MessageUI_Panel_Content {
  1539. display: flex;
  1540. flex: 1 1 none;
  1541. flex-wrap: wrap;
  1542. width: 100%;
  1543. max-width: 1400px;
  1544. margin: 0 auto;
  1545. padding: 16px 20px;
  1546. position: relative;
  1547. }
  1548. `);
  1549. /** 添加界面 **/
  1550. var MessageUI=$('<div>').attr({'id':'MessageUI'}),
  1551. MessageUI_Btn=$('<div>').attr({'id':'MessageUI_Btn'}).text('查看网盘信息'),
  1552. MessageUI_Panel=$('<div>').attr({'id':'MessageUI_Panel'}),
  1553. MessageUI_Panel_Content=$('<div>').attr({'id':'MessageUI_Panel_Content'});
  1554.  
  1555. MessageUI_Btn.click(function(ele){
  1556. var eleStyle = MessageUI_Panel.css('display');
  1557. if(MessageUI_Panel.css('display') === 'none'){
  1558. MessageUI_Panel.css('display','block');
  1559. MessageUI_Btn.text('收起网盘信息');
  1560. } else {
  1561. MessageUI_Panel.css('display','');
  1562. MessageUI_Btn.text('查看网盘信息');
  1563. }
  1564. });
  1565.  
  1566. MessageUI_Panel_Content.html(content);
  1567.  
  1568. $('body').after(MessageUI.append(MessageUI_Btn, MessageUI_Panel.append(MessageUI_Panel_Content)));
  1569. }
  1570. })();