Instagram redirect to Inbox

6/12/2025, 10:07:44 PM

// ==UserScript==
// @name        Instagram redirect to Inbox
// @namespace   Violentmonkey Scripts
// @match       https://www.instagram.com/*
// @grant       none
// @version     1.1
// @author      klaufir216
// @run-at      document-start
// @license MIT
// @description 6/12/2025, 10:07:44 PM
// ==/UserScript==

function main() {
  if (new URL(document.location.href).pathname === "/") {
    document.location.replace("https://www.instagram.com/direct/inbox/");
  }
}

setInterval(main, 1000);
main();