SoundGasm Title Replacer

set window title to current audio

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         SoundGasm Title Replacer
// @namespace    http://tampermonkey.net/
// @version      2026-02-05
// @description  set window title to current audio
// @author       GlawGlack
// @match        https://*.soundgasm.net/u/*/*
// @match        https://soundgasm.theaviary.me/u/*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=soundgasm.net
// @grant        none
// @license      unlicense
// ==/UserScript==

(function() {
    'use strict';
    // check every 500ms on page load until found
    const checkInterval = setInterval(updateTitle, 500);

    function updateTitle() {

        let a = document.querySelector(".jp-title");
        let b = document.querySelector(".jp-details .jp-title");
        let c = document.querySelector(".jp-title > span:nth-child(1)");

        //Soundgasm Improvements case
        if (c !== undefined && c !== null)
        {
            if (document.title != c.innerHTML + " | soundgasm.net")
            {
                document.title = c.innerHTML + " | soundgasm.net"
                clearInterval(checkInterval);
                return;
            }
        }

        if (b !== undefined && b !== null)
        {
            if (document.title != b.innerHTML + " | soundgasm.net")
            {
                document.title = b.innerHTML + " | soundgasm.net"
                clearInterval(checkInterval);
                return;
            }
        }

        if (a !== undefined && a !== null)
        {
            if (document.title != a.innerHTML + " | soundgasm.net")
            {
                document.title = a.innerHTML + " | soundgasm.net"
                clearInterval(checkInterval);
                return;
            }
        }
    }
})();