StartPage - Move ads to the sidebar bottom

It moves ads to the sidebar, avoiding unwanted clicks on them. In mobile, they dissapear out of bounds.

当前为 2024-06-02 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        StartPage - Move ads to the sidebar bottom
// @namespace   https://startpage.com/
// @match       *://*startpage.com/*
// @icon        https://www.startpage.com/sp/cdn/favicons/favicon-32x32-gradient.png
// @version     20240603
// @author      Lukas ThyWalls
// @license     CC0
// @description It moves ads to the sidebar, avoiding unwanted clicks on them. In mobile, they dissapear out of bounds.
// @run-at      document-end
// ==/UserScript==

// Run Check Function at every DOM change.
(new MutationObserver(check)).observe(document, {childList: true, subtree: true});

function check(changes, observer) {
    // If all Sidebar Block AND both Ads Block (top and bottom) are found/loaded...
    if(document.querySelector('#sidebar') &&
       (document.querySelector('#gcsa-top > iframe') && document.querySelector('#gcsa-bottom > iframe')) ||
       document.querySelector('.css-mtj8kd'))
    {
        // ... then stop checking ...
        observer.disconnect();
        // ... and move both Ads Blocks to the bottom of the sidebar.
        document.querySelector("#sidebar").appendChild(document.querySelector("#gcsa-top"));
        document.querySelector("#sidebar").appendChild(document.querySelector("#gcsa-bottom"));
        document.querySelector("#sidebar").appendChild(document.querySelector('div > .css-mtj8kd'));
    }
}