<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: hikewkwek</title><link>https://news.ycombinator.com/user?id=hikewkwek</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 26 Sep 2026 14:47:17 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=hikewkwek" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by hikewkwek in "We're building a dystopia just to make people click on ads [video]"]]></title><description><![CDATA[
<p>Turning off youtube watch history stops the shorts tab from working. And you can use a userscript to swap the "shorts" word to "watch" in the url to convert all shorts to normal videos.<p>For example:<p><pre><code>  // ==UserScript==
  // @name         Redirect YouTube Shorts to Regular Videos (Mobile-Friendly)
  // @namespace    https://example.com/
  // @version      1.4
  // @description  Redirects YouTube Shorts URLs to regular video URLs on mobile
  // @author       YourName
  // @match        *://*.youtube.com/*
  // @run-at       document-end
  // @grant        none
  // ==/UserScript==
  
  //Written by GPT-4o Mini
  (function () {
      'use strict';
  
      // Function to redirect Shorts to regular video URLs
      function redirect() {
          if (location.pathname.startsWith("/shorts")) {
              const videoId = location.pathname.split("/")[2];
              const newUrl = "https://www.youtube.com/watch?v=" + videoId;
              window.location.replace(newUrl);
          }
      }
  
      // Observe changes to the DOM and check for navigation
      const observer = new MutationObserver(() => {
          redirect();
      });
  
      // Start observing the body for changes
      observer.observe(document.body, { childList: true, subtree: true });
  
      // Initial check in case a Shorts URL is loaded directly
      redirect();
  })();</code></pre></p>
]]></description><pubDate>Sun, 27 Apr 2025 21:02:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=43815105</link><dc:creator>hikewkwek</dc:creator><comments>https://news.ycombinator.com/item?id=43815105</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43815105</guid></item></channel></rss>