I could really use a setting to make the logo redirect to the Dashboard instead of the home page.
In the meantime, if anyone is interested:
Using the extension Tampermonkey you can make the Logo button redirect to the dashboard instead using this script:
// ==UserScript==
// @name Traktv - Logo to dashboard
// @namespace http://tampermonkey.net/
// @version 2024-09-18
// @description try to take over the world!
// @author You
// @match https://trakt.tv/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=trakt.tv
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll("a[href='/home']").forEach(e => e.href = "/dashboard")
})();
Have to add my voice to it, this one definitely shouldnāt be a keeper, in my opinion. What reason does anyone have to regularly return to /home as opposed to the dashboard where⦠yāknow, everything we use is??? Idk who thought of this, but Iām really curious about the thought process here.
Put a link to /home in the header if you must, but please revert this change that turned something convenient weāve gotten used to over the years into something thatās just pointless.
Not really sure on that, the logo just goes to https://trakt.tv and that decides to load the home page or dashboard based on being signed in or not. Are you sure youāre signed in?