From db1025e23b31ac72bc4249a1fbc904f802c1200a Mon Sep 17 00:00:00 2001 From: xiu2 <54703944+XIU2@users.noreply.github.com> Date: Wed, 18 Aug 2021 11:44:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20[=E5=85=AD=E9=9F=B3?= =?UTF-8?q?=E8=BD=AF=E4=BB=B6]=20=E6=94=AF=E6=8C=81;=20=E4=BC=98=E5=8C=96?= =?UTF-8?q?=20=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Autopage.user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Autopage.user.js b/Autopage.user.js index f49b970..d29b82d 100644 --- a/Autopage.user.js +++ b/Autopage.user.js @@ -728,7 +728,7 @@ curSite = DBSite.appinn; break; case 'www.sixyin.com': // < 六音软件 > - if (location.pathname === '/') { // 首页 + if (location.pathname === '/' && location.search === '') { // 首页 curSite = DBSite.sixyin; } else if (location.pathname.indexOf('.html') === -1) { // 分类页 curSite = DBSite.sixyin_postlist; @@ -1173,10 +1173,10 @@ document.body.addEventListener('dblclick', function (e) { if (pausePage) { pausePage = false; - GM_notification({text: `已暂停本页 [自动无缝翻页]\n(再次双击可恢复)`, timeout: 2500}); + GM_notification({text: `❌ 已暂停本页 [自动无缝翻页]\n (再次双击可恢复)`, timeout: 2500}); } else { pausePage = true; - GM_notification({text: `已恢复本页 [自动无缝翻页]\n(再次双击可暂停)`, timeout: 2500}); + GM_notification({text: `✅ 已恢复本页 [自动无缝翻页]\n (再次双击可暂停)`, timeout: 2500}); } }); }