頁面載入自動點擊「続きを表示」按鈕
// ==UserScript==
// @name Sponichi 自動展開「続きを表示」
// @namespace http://tampermonkey.net/
// @author gpt5
// @version 1.0
// @description 頁面載入自動點擊「続きを表示」按鈕
// @match https://www.sponichi.co.jp/entertainment/news/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function clickShowMore() {
const btn = document.querySelector('span[data-component="button-show-more"], [data-component="button-show-more"]');
if (btn) {
btn.click();
}
}
// 頁面載入後立即嘗試
window.addEventListener('DOMContentLoaded', clickShowMore);
// 若有延遲載入,監聽 DOM 變動
new MutationObserver(clickShowMore).observe(document.body, {childList: true, subtree: true});
})();