Greasy Fork is available in English.
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 old 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)
// @namespace http://greasyfork.icu/en/scripts/443697-da-logo-to-watch-old-watch
// @version 0.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 old Watch page instead. If you are already there, it will go to the home page as normal.
// @author Valognir
// @match https://www.deviantart.com/*
// @run-at document-end
// @icon https://www.google.com/s2/favicons?sz=64&domain=deviantart.com
// @grant none
// ==/UserScript==
setInterval(function() {
var url = document.location.toString();
var dalogo = document.querySelector('[aria-label="DeviantArt - Home"]');
if (url != "https://www.deviantart.com/watch/deviations" && url != "https://www.deviantart.com/watch/posts" && dalogo.href != "https://www.deviantart.com/watch/deviations") {
dalogo.setAttribute('href', 'https://www.deviantart.com/notifications/watch');
}
}, 1000);