自动获取磁链接并自动离线下载

As of 2017-02-03. See the latest version.

  1. // ==UserScript==
  2. // @name 挊
  3. // @namespace 撸
  4. // @description 自动获取磁链接并自动离线下载
  5.  
  6. // @include http*://avmo.pw/*
  7. // @include http*://avso.pw/*
  8. // @include http*://avxo.pw/*
  9. // @include http*://www.av28.com/*/movie/*
  10.  
  11. // @include http*://*javlibrary.com/*
  12. // @include http*://*javlib.com/*
  13. // @include http*://*javl10.com/*
  14. // @include http*://*jav11b.com/*
  15.  
  16. // @include http*://www.libredmm.com/products/*
  17.  
  18. // @include http*://www.javbus.com/*
  19. // @include http*://www.javbus.me/*
  20. // @include http*://www.javbus2.com/*
  21. // @include http*://www.javbus3.com/*
  22. // @include http*://www.javbus5.com/*
  23.  
  24. // @include http*://www.icpmp.com/fanhao/*.html
  25. // @include http*://blog.jav4you.com/*
  26. // @include http*://*1pondo.tv/*/index.htm
  27.  
  28. // @include http*://pan.baidu.com/disk/home*
  29. // @include http*://115.com/?tab=offline&mode=wangpan
  30. // @include http*://www.furk.net/users/files/add
  31.  
  32. // @version 1.44
  33. // @run-at document-end
  34. // @grant GM_xmlhttpRequest
  35. // @grant GM_setClipboard
  36. // @grant GM_setValue
  37. // @grant GM_getValue
  38. // @grant GM_addStyle
  39. // @grant GM_registerMenuCommand
  40. // ==/UserScript==
  41.  
  42. let main = {
  43. //av信息查询 类
  44. jav: {
  45. type: 0,
  46. re: /(avmo|avso|avxo|av28).*movie.*/,
  47. insert_where: "#movie-share",
  48. vid: function () {
  49. return document.querySelector(".header").nextElementSibling.innerHTML;
  50. }
  51. },
  52. javlibrary: {
  53. type: 0,
  54. re: /(javlibrary|javlib|javl10|jav11b).*\?v=.*/,
  55. insert_where: "#video_favorite_edit",
  56. vid: function () {
  57. return document.querySelector("#video_id").getElementsByClassName("text")[0].innerHTML;
  58. }
  59. },
  60. javbus: {
  61. type: 0,
  62. re: /javbus/,
  63. insert_where: "#star-div",
  64. vid: function () {
  65. return document.querySelector(".header").nextElementSibling.textContent;
  66. }
  67. },
  68. fanhaoku: {
  69. type: 0,
  70. re: /icpmp/,
  71. insert_where: ".mod_film",
  72. vid: function () {
  73. return document.querySelector(".title_inner").title;
  74. }
  75. },
  76. libredmm: {
  77. type: 0,
  78. re: /libredmm/,
  79. insert_where: ".container",
  80. vid: function () {
  81. return location.href.match(/products\/(.*)/)[1];
  82. }
  83. },
  84. blogjav4you: {
  85. type: 0,
  86. re: /blog\.jav4you\.com/,
  87. insert_where: ".posttext",
  88. vid: function () {
  89. return document.querySelector(".posttitle a").textContent.match(/\[(.*)\]/)[1];
  90. },
  91. },
  92. pondo1: {
  93. type: 0,
  94. re: /1pondo\.tv.*\/index.htm/,
  95. insert_where: ".hdg3",
  96. vid: function () {
  97. return location.pathname.split("/")[3];
  98. },
  99. },
  100. dmm: {
  101. type: 0,
  102. re: /dmm\.co\.jp/,
  103. insert_where: ".lh4",
  104. vid: function () {
  105. let result = location.href.replace(/.*cid=/, "").replace(/\/\??.*/, "").match(/[^h_0-9].*/);
  106. return result[0] ? result[0].replace("00", "") : "";
  107. }
  108. },
  109.  
  110. //网盘下载 类
  111. //这些 $ 是真正的 jquery
  112. baidu: {
  113. type: 1,
  114. re: /pan\.baidu\.com/,
  115. fill_form: function (magnet) {
  116. document.querySelector(".g-button[data-button-id=b13]").click();
  117. setTimeout(function () {
  118. document.querySelector("#_disk_id_2").click();
  119. setTimeout(function () {
  120. document.querySelector("#share-offline-link").value = magnet;
  121. document.querySelector(".g-button[data-button-id=b65]").click();
  122. }, 500);
  123. }, 1500);
  124. }
  125. },
  126. 115: {
  127. type: 1,
  128. re: /115\.com/,
  129. fill_form: function (link) {
  130. let rsc = setInterval(function () {
  131. if (document.readyState == "complete") {
  132. clearInterval(rsc);
  133. setTimeout(function () {
  134. Core["OFFL5Plug"].OpenLink();
  135. setTimeout(function () {
  136. $("#js_offline_new_add").val(link);
  137. }, 300);
  138. }, 1000);
  139. }
  140. }, 400);
  141. }
  142. },
  143. letv: {
  144. type: 1,
  145. re: /cloud\.letv\.com/,
  146. fill_form: function (link) {
  147. setTimeout(function () {
  148. $("#offline-btn").click();
  149. setTimeout(function () {
  150. $("#offline_clear_complete").prev().click();
  151. setTimeout(function () {
  152. $("#offline-add-link").val(link);
  153. }, 500);
  154. }, 1000);
  155. }, 2000);
  156. }
  157. },
  158. furk: {
  159. type: 1,
  160. re: /www\.furk\.net/,
  161. fill_form: function (link) {
  162. setTimeout(function () {
  163. $("#url").val(link.replace("magnet:?xt=urn:btih:", ""));
  164. }, 1500);
  165. }
  166. },
  167. 360: {
  168. type: 1,
  169. re: /yunpan\.360\.cn\/my/,
  170. fill_form: function (link) {
  171. yunpan.cmdCenter.showOfflineDia();
  172. setTimeout(function () {
  173. $(".offdl-btn-create").click();
  174. setTimeout(function () {
  175. $("#offdlUrl").val(link);
  176. }, 500);
  177. }, 1000);
  178. }
  179. },
  180. uc: {
  181. type: 1,
  182. re: /disk\.yun\.uc\.cn\//,
  183. fill_form: function (link) {
  184. setTimeout(function () {
  185. $("#newuclxbtn_index").click();
  186. setTimeout(function () {
  187. $("#uclxurl").val(link);
  188. }, 1000);
  189. }, 1200);
  190. }
  191. },
  192.  
  193. };
  194.  
  195. let offline_sites = {
  196. baidu: {
  197. url: "http://pan.baidu.com/disk/home",
  198. name: "百度云",
  199. enable: true
  200. },
  201. 115: {
  202. name: "115离线",
  203. url: "http://115.com/?tab=offline&mode=wangpan",
  204. enable: true,
  205. },
  206. letv: {
  207. name: "乐视云",
  208. url: "http://cloud.letv.com/webdisk/home/index",
  209. enable: false
  210. },
  211. 360: {
  212. name: "360云",
  213. url: "http://yunpan.360.cn/my/",
  214. enable: false
  215. },
  216. uc: {
  217. name: "UC离线",
  218. url: "http://disk.yun.uc.cn/",
  219. enable: false
  220. },
  221. furk: {
  222. name: "Furk",
  223. url: "https://www.furk.net/users/files/add",
  224. enable: true
  225. },
  226. };
  227. let common = {
  228. add_style: function () {
  229. GM_addStyle([
  230. "#nong-table{border-collapse: initial !important;background-color: white !important;text-align: center !important;margin:10px auto;color:#666 !important;font-size:13px;text-align:center !important;border: 1px solid #cfcfcf !important;border-radius: 10px !important;}",
  231. "#nong-table a {margin-right: 5px !important;color:blue}",
  232. "#nong-table a:hover {color:#d20f00 !important;}",
  233. "#nong-table th,#nong-table td{text-align: inherit !important;height:30px;padding:0 1em 0 !important;}",
  234. ".nong-row{text-align: inherit !important;height:30px;padding:0 1em 0 !important;border: 1px solid #EFEFEF !important;}",
  235. ".nong-row:hover{background-color: #dae8ff !important;}",
  236. ".nong-offline-download{color: rgb(0, 180, 30) !important;}",
  237. ".nong-offline-download:hover{color:red !important;}",
  238. ].join(""));
  239. },
  240. handle_copy_event: function (event) {
  241. event.target.innerHTML = "成功";
  242. GM_setClipboard(event.target.href);
  243. setTimeout(function () {
  244. event.target.innerHTML = "复制";
  245. }, 1000);
  246. event.preventDefault(); //阻止跳转
  247. },
  248. handle_dl_event: function (event) {
  249. let mag = event.target.parentElement.parentElement.parentElement.getAttribute("mag");
  250. console.info("磁链接", mag);
  251. GM_setValue("magnet", mag);
  252. },
  253.  
  254. reg_event: function () {
  255. let selector_event_map = [{
  256. selector: ".nong-copy",
  257. type: "click",
  258. fn: this.handle_copy_event
  259. }, {
  260. selector: ".nong-offline-download",
  261. type: "click",
  262. fn: this.handle_dl_event
  263. }];
  264. selector_event_map.forEach(function (obj) {
  265. Array.from(document.querySelectorAll(obj.selector)).forEach(function (elem) {
  266. elem.addEventListener(obj.type, obj.fn);
  267. })
  268. });
  269. /*
  270. for (let obj of selector_event_map) {
  271. for (let elem of document.querySelectorAll(obj.selector)) {
  272. //console.log(elem, obj.type, obj.fn);
  273. elem.addEventListener(obj.type, obj.fn);
  274. }
  275. }*/
  276. },
  277. parsetext: function (text) {
  278. let doc = null;
  279. try {
  280. doc = document.implementation.createHTMLDocument("");
  281. doc.documentElement.innerHTML = text;
  282. return doc;
  283. }
  284. catch (e) {
  285. alert("parse error");
  286. }
  287. },
  288. };
  289. let magnet_table = {
  290. template: {
  291. create_head: function (src) {
  292. let a = document.createElement("tr");
  293. a.className = "nong-row";
  294. a.id = "nong-head";
  295. let head_str = [
  296. "大小",
  297. "操作",
  298. "离线下载"
  299. ];
  300. let th_list = [document.createElement("th"), document.createElement("th"), document.createElement("th"), document.createElement("th")];
  301.  
  302. let select_box = document.createElement("select");
  303. let option_str = my_search.search_name_string;
  304. //console.log("get", GM_getValue("search_index"));
  305. let index = GM_getValue("search_index", 0);
  306. let op_value = 0;
  307. option_str.forEach(function (str) {
  308. let op = document.createElement("option");
  309. op.value = op_value;
  310. op.textContent = str;
  311. if (index == op_value) {
  312. op.setAttribute("selected", "selected");
  313. }
  314. op_value++;
  315. select_box.appendChild(op);
  316. });
  317. /*
  318. for (let str of option_str) {
  319. let op = document.createElement("option");
  320. op.value = op_value;
  321. op.textContent = str;
  322. if (index == op_value) {
  323. op.setAttribute("selected", "selected");
  324. }
  325. op_value++;
  326. select_box.appendChild(op);
  327. }*/
  328. select_box.addEventListener("change", function (e) {
  329. GM_setValue("search_index", this.value);
  330. let table = document.querySelector("#nong-table");
  331. table.parentElement.removeChild(table);
  332. run();
  333. });
  334. th_list[0].appendChild(select_box);
  335.  
  336. th_list[1].appendChild(document.createElement("a"));
  337. th_list[1].lastChild.setAttribute("href", src);
  338. th_list[1].lastChild.setAttribute("target", "_blank");
  339. th_list[1].lastChild.textContent = head_str[0];
  340.  
  341. th_list[2].appendChild(document.createElement("a"));
  342. th_list[2].lastChild.textContent = head_str[1];
  343.  
  344. th_list[3].appendChild(document.createElement("a"));
  345. th_list[3].lastChild.textContent = head_str[2];
  346.  
  347. th_list.forEach(function (th) {
  348. a.appendChild(th);
  349. });
  350. /*
  351. for (let th of th_list) {
  352. a.appendChild(th);
  353. }
  354. */
  355. return a;
  356. },
  357. create_row: function (data) {
  358. let tr = document.createElement("tr");
  359. tr.className = "nong-row";
  360. tr.setAttribute("mag", data.mag);
  361. let td = document.createElement("td");
  362. let list = [this.create_info(data.title, data.mag), this.create_size(data.size, data.src), this.create_operation(data.mag), this.create_offline()];
  363. list.forEach(function (elem) {
  364. let c = td.cloneNode(true);
  365. c.appendChild(elem);
  366. tr.appendChild(c);
  367. });
  368. /*
  369. for (let elem of [this.create_info(data.title, data.mag), this.create_size(data.size, data.src), this.create_operation(data.mag), this.create_offline()]) {
  370. let c = td.cloneNode(true);
  371. c.appendChild(elem);
  372. tr.appendChild(c);
  373. }
  374. */
  375. return tr;
  376. },
  377. create_row_for_sukebei: function (data) {
  378. let tr = document.createElement("tr");
  379. tr.className = "nong-row";
  380. tr.setAttribute("mag", data.mag);
  381. let td = document.createElement("td");
  382. let append_elems = [
  383.  
  384. (function (title, src, self) {
  385. return self.create_info(title, src);
  386. })(data.title, data.src, this),
  387.  
  388. (function (size, src, self) {
  389. return self.create_size(size, src);
  390. })(data.size, data.src, this),
  391.  
  392. (function (torrent_url, self) {
  393. let operate = self.create_operation(torrent_url);
  394. operate.firstChild.textContent = "种子";
  395. operate.firstChild.setAttribute("class", "nong-copy-sukebei");
  396. operate.firstChild.setAttribute("target", "_blank");
  397. return operate;
  398. })(data.torrent_url, this),
  399.  
  400. (function (self) {
  401. let div = document.createElement("div");
  402. div.textContent = "暂不支持离线下载";
  403. return div;
  404. })(this)];
  405. append_elems.forEach(function (elem) {
  406. let c = td.cloneNode(true);
  407. c.appendChild(elem);
  408. tr.appendChild(c);
  409. });
  410. /*
  411. for (let elem of append_elems) {
  412. let c = td.cloneNode(true);
  413. c.appendChild(elem);
  414. tr.appendChild(c);
  415. }
  416. */
  417. return tr;
  418. },
  419. create_info: function (title, mag) {
  420. let a = this.info.cloneNode(true);
  421. a.firstChild.textContent = title.length < max_title_length ? title : title.substr(0, max_title_length) + "...";
  422. a.firstChild.href = mag;
  423. a.title = title;
  424. return a;
  425. },
  426. create_size: function (size, src) {
  427. let a = this.size.cloneNode(true);
  428. a.textContent = size;
  429. a.href = src;
  430. return a;
  431. },
  432. create_operation: function (mag) {
  433. let a = this.operation.cloneNode(true);
  434. a.firstChild.href = mag;
  435. return a;
  436. },
  437. create_offline: function () {
  438. let a = this.offline.cloneNode(true);
  439. a.className = "nong-offline";
  440. return a;
  441. },
  442.  
  443. info: (function () {
  444. let a = document.createElement("div");
  445. let b = document.createElement("a");
  446. b.textContent = "name";
  447. b.href = "src";
  448. b.target = "_blank";
  449. a.appendChild(b);
  450. return a;
  451. })(),
  452. size: function () {
  453. let a = document.createElement("a");
  454. a.textContent = "size";
  455. return a;
  456. } (),
  457. operation: (function () {
  458. let a = document.createElement("div");
  459. let copy = document.createElement("a");
  460. copy.className = "nong-copy";
  461. copy.textContent = "复制";
  462. a.appendChild(copy);
  463. return a;
  464. })(),
  465. offline: (function () {
  466. let a = document.createElement("div");
  467. let b = document.createElement("a");
  468. b.className = "nong-offline-download";
  469. b.target = "_blank";
  470. for (let k in offline_sites) {
  471. if (offline_sites[k].enable) {
  472. let c = b.cloneNode(true);
  473. c.href = offline_sites[k].url;
  474. c.textContent = offline_sites[k].name;
  475. a.appendChild(c);
  476. }
  477. }
  478. return a;
  479. })(),
  480. },
  481.  
  482. generate: function (src, data) {
  483. let tab = document.createElement("table");
  484. tab.id = "nong-table";
  485. tab.appendChild(this.template.create_head(src));
  486. //console.log(src);
  487. //console.log(data);
  488. if (src.match("sukebei.nyaa.se")) {
  489. data.forEach((d)=> {
  490. tab.appendChild(this.template.create_row_for_sukebei(d));
  491. });
  492. /*
  493. for (let d of data) {
  494. tab.appendChild(this.template.create_row_for_sukebei(d));
  495. }
  496. */
  497. }
  498. else {
  499. data.forEach((d)=> {
  500. tab.appendChild(this.template.create_row(d));
  501. });
  502. /*
  503. for (let d of data) {
  504. tab.appendChild(this.template.create_row(d));
  505. }
  506. */
  507. }
  508. return tab;
  509. },
  510.  
  511. };
  512. let my_search = {
  513. current: function (kw, cb) {
  514. let search = my_search[GM_getValue("search_index", 0)];
  515. try {
  516. return search(kw, cb);
  517. }
  518. catch (e) {
  519. this.search_error();
  520. }
  521. },
  522. search_error: function (r) {
  523. alert("搜索出现错误,请检查网络");
  524. },
  525. search_name_string: ["btso", "btdb", "sukebei.nyaa", "btkitty"],
  526. 0: function (kw, cb) {
  527. GM_xmlhttpRequest({
  528. method: "GET",
  529. url: "https://btso.pw/search/" + kw,
  530. onload: function (result) {
  531. let doc = common.parsetext(result.responseText);
  532. let data = [];
  533. let t = doc.getElementsByClassName("data-list")[0];
  534. if (t) {
  535. Array.from(t.getElementsByTagName("a")).forEach(function (elem) {
  536. if (!elem.className.match("btn")) {
  537. data.push({
  538. "title": elem.title,
  539. "mag": "magnet:?xt=urn:btih:" + elem.outerHTML.replace(/.*hash\//, "").replace(/" .*\n.*\n.*\n.*/, ""),
  540. "size": elem.nextElementSibling.textContent,
  541. "src": elem.href,
  542. });
  543. }
  544. });
  545. }
  546. else {
  547. data.push({
  548. "title": "没有找到磁链接",
  549. "mag": "",
  550. "size": "0",
  551. "src": result.finalUrl,
  552. });
  553. }
  554. cb(result.finalUrl, data);
  555. },
  556. onerror: function (e) {
  557. console.error(e);
  558. throw "search error";
  559. }
  560. });
  561. },
  562. 1: function (kw, cb) {
  563. GM_xmlhttpRequest({
  564. method: "GET",
  565. url: "https://btdb.in/q/" + kw + "/",
  566. onload: function (result) {
  567. let doc = common.parsetext(result.responseText);
  568. let data = [];
  569. let t = doc.getElementsByClassName("item-title");
  570. if (t) {
  571. Array.from(t).forEach(function (elem) {
  572. data.push({
  573. "title": elem.firstChild.title,
  574. "mag": elem.nextElementSibling.firstElementChild.href,
  575. "size": elem.nextElementSibling.children[1].textContent,
  576. "src": "https://btdb.in" + elem.firstChild.getAttribute("href"),
  577. });
  578. });
  579. }
  580. else {
  581. data.push({
  582. "title": "没有找到磁链接",
  583. "mag": "",
  584. "size": "0",
  585. "src": result.finalUrl,
  586. });
  587. }
  588.  
  589. cb(result.finalUrl, data);
  590. },
  591. onerror: function (e) {
  592. console.error(e);
  593. throw "search error";
  594. }
  595. });
  596. },
  597. 2: function (kw, cb) {
  598. GM_xmlhttpRequest({
  599. method: "GET",
  600. url: "https://sukebei.nyaa.se/?page=search&cats=0_0&filter=0&term=" + kw,
  601. onload: function (result) {
  602. let doc = common.parsetext(result.responseText);
  603. let data = [];
  604. let t = doc.getElementsByClassName("tlistrow");
  605. if (t) {
  606. Array.from(t).forEach(function (elem) {
  607. data.push({
  608. "title": elem.querySelector(".tlistname a").textContent,
  609. "mag": "",
  610. "torrent_url": "https:" + elem.querySelector(".tlistdownload a").getAttribute("href"),
  611. "size": elem.querySelector(".tlistsize").textContent,
  612. "src": "https:" + elem.querySelector(".tlistname a").getAttribute("href"),
  613. });
  614. });
  615. }
  616. else {
  617. data.push({
  618. "title": "没有找到磁链接",
  619. "mag": "",
  620. "torrent_url": "",
  621. "size": "0",
  622. "src": result.finalUrl,
  623. });
  624. }
  625.  
  626. cb(result.finalUrl, data);
  627. },
  628. onerror: function (e) {
  629. console.error(e);
  630. throw "search error";
  631. }
  632. });
  633. },
  634. 3: function (kw, cb) {
  635. GM_xmlhttpRequest({
  636. method: "POST",
  637. url: "http://btkitty.bid/",
  638. data: "keyword=" + kw,
  639. headers: {
  640. "Content-Type": "application/x-www-form-urlencoded"
  641. },
  642. onload: function (result) {
  643. let doc = common.parsetext(result.responseText);
  644. let data = [];
  645. let t = doc.getElementsByClassName("list-con");
  646. if (t) {
  647. Array.from(t).forEach(function (elem) {
  648. data.push({
  649. "title": elem.querySelector("dt a").textContent,
  650. "mag": elem.querySelector("dd a").href,
  651. "size": elem.querySelector(".option span:nth-child(3) b").textContent,
  652. "src": elem.querySelector("dt a").href,
  653. });
  654. });
  655. }
  656. else {
  657. data.push({
  658. "title": "没有找到磁链接",
  659. "mag": "",
  660. "size": "0",
  661. "src": result.finalUrl,
  662. });
  663. }
  664. cb(result.finalUrl, data);
  665. },
  666. onerror: function (e) {
  667. console.error(e);
  668. throw "search error";
  669. }
  670. })
  671. },
  672.  
  673. };
  674.  
  675. let display_table = function (vid, insert_where) {
  676. common.add_style();
  677. my_search.current(vid, function (data, src) {
  678.  
  679. let tab = magnet_table.generate(data, src);
  680. if (typeof insert_where === "string") {
  681. let elem = document.querySelector(insert_where);
  682. //console.log("display_table", tab, elem);
  683. if (elem) {
  684. elem.parentElement.insertBefore(tab, elem);
  685. }
  686. }
  687. else if (typeof insert_where === "function") {
  688. insert_where(tab);
  689. }
  690. else {
  691. console.error("插入表格错误");
  692. }
  693.  
  694. common.reg_event();
  695.  
  696. });
  697. };
  698.  
  699. let vid_mode = function (v) {
  700. let vid = "";
  701. try {
  702. vid = v.vid();
  703. }
  704. catch (error) {
  705. vid = "";
  706. console.error("没有找到番号", v.vid.toString());
  707. }
  708. if (vid) {
  709. console.info("番号:", vid);
  710. display_table(vid, v.insert_where);
  711. }
  712. };
  713.  
  714. let dl_mode = function (v) {
  715.  
  716. let mag = GM_getValue("magnet", "");
  717. //console.info(1, "开始离线下载", mag);
  718. if (mag) {
  719. let script = document.createElement("script");
  720. script.setAttribute("type", "text/javascript");
  721. script.innerHTML = "(" + v.fill_form.toString() + ")(\"" + mag + "\")";
  722. document.body.appendChild(script);
  723. //console.info(info);
  724. }
  725. GM_getValue("magnet", "");
  726. };
  727.  
  728. let run = function () {
  729. max_title_length = GM_getValue("max_title_length", 40);
  730. let main_keys = Object.keys(main);
  731. for (let i = 0; i < main_keys.length; i++) {
  732. let v = main[main_keys[i]];
  733.  
  734. if (v.re && v.re.test(location.href)) {
  735. if (v.type === 0) {
  736.  
  737. //----
  738.  
  739. //for javlibrary
  740. if (main_keys[i] === "javlibrary") {
  741. if (document.querySelector("#adultwarningprompt")) {
  742. document.querySelectorAll("#adultwarningprompt input")[0].click();
  743. }
  744. }
  745. //----
  746.  
  747. vid_mode(v);
  748. }
  749. else if (v.type == 1) {
  750. dl_mode(v);
  751. }
  752. break;
  753. }
  754. }
  755. };
  756. let max_title_length = GM_getValue("max_title_length", 40);
  757. let set_max_title_length = function () {
  758. let len = prompt("请输入你想要的标题长度", GM_getValue("max_title_length", 40));
  759. if (len !== null && len !== "") {
  760. GM_setValue("max_title_length", len);
  761. let table = document.querySelector("#nong-table");
  762. table.parentElement.removeChild(table);
  763. run();
  764. }
  765. };
  766.  
  767. GM_registerMenuCommand("挊-标题长度", set_max_title_length);
  768. run();
  769.  
  770.  
  771.