Greasy Fork

Greasy Fork is available in English.

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 old Watch page instead. If you are already there, it will go to the home page as normal.

目前为 2022-05-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         DA Logo to Watch (Old Watch)
// @namespace    http://greasyfork.icu/en/scripts/443697-da-logo-to-watch-old-watch
// @version      0.1
// @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/*
// @exclude      https://www.deviantart.com/notifications/watch
// @icon         https://www.google.com/s2/favicons?sz=64&domain=deviantart.com
// @grant        none
// ==/UserScript==
 
var dalogo = document.querySelector('[aria-label="DeviantArt - Home"]');
 
dalogo.setAttribute('href', 'https://www.deviantart.com/notifications/watch');