SoundCloud - Auto redirect to current playing

Automaticly redirects to current playing song.

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

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

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

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

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

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

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         SoundCloud - Auto redirect to current playing
// @namespace    armagan.rest
// @version      1.1
// @description  Automaticly redirects to current playing song.
// @author       Kıraç Armağan Önal
// @match        https://soundcloud.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function getGetBadgesElement() {return document.querySelector(".playbackSoundBadge__actions")};
    function getAutoRedirectCheckbox() {return document.querySelector(".auto-redirect-button")};
    function isPlaying() {return Boolean(document.querySelector(".playControls__play.playing"))};
    function getNowplayingElement() {return document.querySelector(".playbackSoundBadge__titleLink")};
    function getNowplayingLink() {return (getNowplayingElement() || {}).href || ""};
    let isAutoRedirectActive = false;
    let lastNowPlayingLink = getNowplayingLink();

    setInterval(()=>{
        // Eğer sayfa ayarlar sayfası falansa umursamasın diye.
        if (!getGetBadgesElement()) return;

        if (!getAutoRedirectCheckbox()) {
            let checkBoxElement = document.createElement("input");
            checkBoxElement.type = "checkbox";
            checkBoxElement.checked = isAutoRedirectActive;
            checkBoxElement.title = "Auto redirect to current playing page";
            checkBoxElement.style.marginTop = "5px";
            checkBoxElement.style.marginLeft = "6px";
            checkBoxElement.classList.add("auto-redirect-button");
            checkBoxElement.addEventListener("change",()=>{
                isAutoRedirectActive = checkBoxElement.checked;
            });
            getGetBadgesElement().appendChild(checkBoxElement);
        }

        if (isPlaying() && isAutoRedirectActive && lastNowPlayingLink != getNowplayingLink()) {
            getNowplayingElement().click();
            lastNowPlayingLink = getNowplayingLink();
        }
    },1000)
})();