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