Photo Station 6 影片快轉

Control Video forward/backward for Photo Station 6. Backword hotkey: "[", Forward hotkey: "]"

// ==UserScript==
// @name         Photo Station 6 影片快轉
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Control Video forward/backward for Photo Station 6. Backword hotkey: "[", Forward hotkey: "]"
// @author       You
// @match        http://twmedia.coreop.net/photo/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=coreop.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const SECONDS = 5;

    document.addEventListener('keydown', (event) => {
        console.log(event.key)
        const extMain = window.Main;
        if (!extMain) {
            console.log('extJs main not found.');
            return;
        }
        if (event.key === '[') {
            const position = extMain.getScope("PhotoStation.VideoPlayer").player.getPosition();
            extMain.getScope("PhotoStation.VideoPlayer").player.seek(position - SECONDS);
        } else if (event.key === ']') {
            const position = extMain.getScope("PhotoStation.VideoPlayer").player.getPosition();
            extMain.getScope("PhotoStation.VideoPlayer").player.seek(position + SECONDS);
        }
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址