Greasy Fork

Greasy Fork is available in English.

SoundCloud Restore Playback

Saves/restores playback position on SoundCloud.com

当前为 2022-12-02 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        SoundCloud Restore Playback
// @description Saves/restores playback position on SoundCloud.com
// @namespace   https://github.com/crabvk
// @version     0.3.2
// @author      Vyacheslav Konovalov
// @match       https://soundcloud.com/*
// @license     MIT
// @noframes
// @grant       GM_getValue
// @grant       GM_setValue
// @grant       GM_deleteValue
// @homepageURL https://github.com/crabvk/userscripts
// ==/UserScript==

/**
 * Finds the last array element that matches the condition.
 *
 * @param {Array} array Any array.
 * @param {number} cond Condition to match against each array element.
 */
const findLast = (array, cond) => {
    let i = array.length - 1
    for (; i >= 0; i--) {
        if (cond(array[i])) {
            return array[i]
        }
    }
}

/**
 * Clicks on the timeline according to factor.
 *
 * @param {number} factor Current position divided by track duration.
 * @param {number} wrapper The timeline wrapper element on which to click.
 */
const restorePlayback = (factor, wrapper) => {
    const rect = wrapper.getBoundingClientRect()
    const args = {
        view: unsafeWindow,
        bubbles: true,
        clientX: rect.x + Math.floor(rect.width * factor),
        clientY: rect.y + 10
    }
    wrapper.dispatchEvent(new MouseEvent('mousedown', args))
    wrapper.dispatchEvent(new MouseEvent('mouseup', args))
}

const observeProgress = player => {
    let isInit = true
    let isRestore = false
    let lastKey, lastPosition
    const cond = m => isInit ? m.attributeName === 'aria-valuemax' : m.attributeName === 'aria-valuenow'

    new MutationObserver(mutations => {
        const mutation = findLast(mutations, m => m.type === 'attributes' && cond(m))
        if (mutation === undefined) {
            return
        }

        const duration = parseInt(mutation.target.getAttribute('aria-valuemax'))
        // Skip tracks shorter than 10 minutes
        if (duration < 600) {
            return
        }

        const key = player.querySelector('.playbackSoundBadge__titleLink').getAttribute('href')
        let position

        if (!isInit && key === lastKey) {
            // Ignore position change triggered by restorePlayback function
            if (isRestore) {
                isRestore = false
                return
            }
            position = parseInt(mutation.target.getAttribute('aria-valuenow'))
            if (position > 0 && position % 5 === 0 || Math.abs(lastPosition - position) > 4) {
                GM_setValue(key, position)
            }
        } else {
            isInit = false
            position = GM_getValue(key) || 0
            if (position > 0) {
                // Do not restore position from last 30 seconds of the track
                if (position < duration - 30) {
                    isRestore = true
                    restorePlayback(position / duration, mutation.target)
                } else {
                    GM_deleteValue(key)
                }
            }
        }

        lastKey = key
        lastPosition = position
    }).observe(player.querySelector('.playbackTimeline__progressWrapper'), { attributes: true })
}

const player = document.body.querySelector('#app .playControls')
observeProgress(player)