ahri8NavigationSaver

松鼠症倉庫擴充,免點選與紀錄頁數

  1. // ==UserScript==
  2. // @name ahri8NavigationSaver
  3. // @namespace https://github.com/JAZZA132/ahri8NavigationSaver
  4. // @description 松鼠症倉庫擴充,免點選與紀錄頁數
  5. // @description:zh-TW 松鼠症倉庫擴充,免點選與紀錄頁數
  6. // @author AaronWang
  7. // @match https://ahri8.top/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=ahri8.top
  9. // @grant GM_log
  10. // @grant GM_setValue
  11. // @grant GM_getValue
  12. // @grant GM_addStyle
  13. // @grant GM_registerMenuCommand
  14. // @license GPL-3.0
  15. // @version 1
  16. // ==/UserScript==
  17.  
  18. (function () {
  19. 'use strict';
  20.  
  21. let currentUrl = window.location.href;
  22. let referrerUrl = document.referrer;//返回一個字符串,這個字符串是用來表示使用者從哪個網頁跳轉到當前頁面的 URL
  23.  
  24. // 检查当前 URL 是否符合指定模式
  25. let regex1 = /^https:\/\/ahri8\.top\/post\.php\?ID=(\d+)$/; // 匹配點選漫畫畫面
  26. let regex2 = /^https:\/\/ahri8\.top\/readOnline.*$/; // 匹配從漫畫頁到漫畫簡介
  27. let match = currentUrl.match(regex1);
  28. let match2 = referrerUrl.match(regex2);
  29.  
  30. let isButtonClicked = false;
  31. // 獲取按鈕元素
  32. let readButton = document.querySelector('a.apo.btn.btn-white.btn-default');
  33. // 檢查按鈕是否存在於頁面中
  34. if (readButton) {
  35. // 添加點擊事件監聽器
  36. readButton.addEventListener('click', function(event) {
  37. // 防止默認的跳轉行為,根據需要選擇是否阻止
  38. // event.preventDefault();
  39.  
  40. // 在這裡執行你的動作代碼
  41. console.log('閱讀漫畫按鈕被點擊!');
  42. // 如果你需要執行某些動作,比如存儲資料到 localStorage
  43. // localStorage.setItem('yourKey', 'yourValue');
  44.  
  45. // 如果你想在執行完動作後繼續跳轉頁面,不要使用 event.preventDefault()
  46. // 使用 GM_setValue 持久化按鈕點擊狀態
  47. GM_setValue('isButtonClicked', true);
  48. });
  49. }
  50. console.log('GM_getValue(isButtonClicked):', GM_getValue('isButtonClicked'));
  51. // 網頁是使用ajax,監視url變化
  52. let nowHref = document.location.href;
  53. let nowMangaPage = nowHref.match(regex2); // 匹配當前是不是漫畫頁
  54.  
  55.  
  56. if (match2) {
  57. //如果是從漫畫頁進入到漫畫簡介,則不動作
  58. console.log('match2');
  59. // 離開漫畫頁面時重置按鈕點擊狀態
  60. GM_setValue('isButtonClicked', false);
  61.  
  62. } else if (match || GM_getValue('isButtonClicked')) {
  63. console.log('match1 or isButtonClicked');
  64. // 正則,取得 ex: https://ahri8.top/readOnline2.php?ID=125691 的ID
  65. let postId = nowHref.match(/ID=(\d+)/)[1];
  66.  
  67. // 从 localStorage 中获取页数
  68. let pageValue = localStorage.getItem(postId);
  69. if (pageValue === null) {
  70. pageValue = 1;
  71. }
  72.  
  73. // 构建重定向 URL
  74. let redirectUrl = 'https://ahri8.top/readOnline2.php?ID=' + postId + '&host_id=0&page=' + pageValue;
  75.  
  76. // 执行重定向
  77. window.location.href = redirectUrl;
  78.  
  79. // 重定向後重置按鈕點擊狀態
  80. GM_setValue('isButtonClicked', false);
  81.  
  82. }
  83.  
  84. if (nowMangaPage) {
  85.  
  86. console.log('nowMangaPage');
  87. // 監控url變化
  88. setInterval(function () {
  89. if (nowHref != document.location.href) {
  90. nowHref = document.location.href;
  91. let newHref = document.location.href;
  92. // 正則,取得 ex: https://ahri8.top/readOnline2.php?ID=125691 的ID
  93. let postId = newHref.match(/ID=(\d+)/)[1];
  94.  
  95. // 取得當前頁數
  96. var newPageValue = newHref.match(/&page=(\d+)/)[1];
  97. console.log('newPageValue:', newPageValue);
  98. localStorage.setItem(postId, newPageValue);
  99. console.log(postId + '儲存值 ' + newPageValue + ' 到 localStorage。');
  100. }
  101. }, 1000);
  102. }
  103.  
  104. })();