DA Logo to Watch (Old Watch)

When clicking the logo, the site usually takes you to the Home page, aka. the recommended feed. This script will change the link to lead to the Watch page instead. If you are already there, it will go to the home page as normal.

// ==UserScript==
// @name        DA Logo to Watch (Old Watch)
// @version     2.2
// @description When clicking the logo, the site usually takes you to the Home page, aka. the recommended feed. This script will change the link to lead to the Watch page instead. If you are already there, it will go to the home page as normal.
// @author      Valognir (https://www.deviantart.com/valognir)
// @namespace   https://gf.qytechs.cn/en/scripts/445357-da-logo-to-watch-old-watch
// @run-at      document-start
// @match       *://*.deviantart.com/*
// @exclude     *://*.deviantart.com/*realEstateId*
// ==/UserScript==

(function() {
    'use strict';
    document.addEventListener('DOMContentLoaded', function() {
        const observer = new MutationObserver(function(mutations) {
            if (!window.location.href.startsWith('https://www.deviantart.com/notifications/watch')) {
                const logoButton = document.querySelector('[aria-label="DeviantArt - Home"]');
                if (logoButton !== null) {
                    logoButton.href = 'https://www.deviantart.com/notifications/watch';
                }
            }
        });
        observer.observe(document, { childList: true, subtree: true });
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址