X (Twitter) Auto Gallery Mode

Opens posts that contains images in gallery mode by default

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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 });
})();