X (Twitter) Auto Gallery Mode

Opens posts that contains images in gallery mode by default

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        X (Twitter) Auto Gallery Mode
// @namespace   Violentmonkey Scripts
// @match       https://x.com/*/status/*
// @icon        https://www.google.com/s2/favicons?sz=64&domain=twitter.com
// @license     MIT
// @grant       none
// @version     1.0
// @author      moh
// @description Opens posts that contains images in gallery mode by default
// ==/UserScript==

(function () {
  'use strict';

  function run() {
    const link = document.querySelector('article[data-testid="tweet"][tabindex="-1"]')?.querySelector('[aria-labelledby]')?.querySelector('a[role="link"]') ?? null;

    if (!link) {
      return;
    }

    if (window.location.toString().includes('photo')) {
      return;
    }

    console.log(
      "%cUserScript",
      "color: yellow; font-style: italic; background-color: blue;padding: 2px",
      "redirecting from",
      window.location.toString(),
      "to",
      link
    );

    const data = sessionStorage.getItem("userscript-redirect-"+link);
    if (data) {
      return;
    }

    link.click();
    sessionStorage.setItem("userscript-redirect-"+link, 1);
  }

  run();

  const observer = new MutationObserver((mutations) => {
      mutations.forEach(() => {
          run();
      });
  });

  observer.observe(document.body, { subtree: true, childList: true });
})();