Jak wywołać funkcje GM_ Greasemonkey z kodu, który musi działać w zakresie strony docelowej?

Zadałem pytanie i otrzymałem tutaj odpowiedź:Jak zadzwonić do tej funkcji YouTube z Greasemonkey?

Ten kod działa i dodaje przycisk do strony, który rejestruje czas wideo.
Ale kluczowa część musi działać w zakresie strony docelowej - gdzie znajduje się GreasemonkeyGM_ funkcje są niedostępne.

Chcę użyćGM_setValue() aby nagrać czas wideo. Jak zadzwonić?GM_setValue() z mojego przyciskuclick treser?

Oto odpowiednia częśćkompletny skrypt (kliknij prawym przyciskiem myszy, aby zapisać):

... ...

//-- Only run in the top page, not the various iframes.
if (window.top === window.self) {
    var timeBtn         = document.createElement ('a');
    timeBtn.id          = "gmTimeBtn";
    timeBtn.textContent = "Time";
    //-- Button is styled using CSS, in GM_addStyle, below.

    document.body.appendChild (timeBtn);

    addJS_Node (null, null, activateTimeButton);
}

function activateTimeButton () {
    var timeBtn = document.getElementById ("gmTimeBtn");
    if (timeBtn) {
        timeBtn.addEventListener ('click',
            function () {
                var ytplayer = document.getElementById ("movie_player");
                //-- IMPORTANT:  GM_functions will not work here.

                console.log ("getCurrentTime(): ", ytplayer.getCurrentTime() );
                alert (ytplayer.getCurrentTime() );
            },
            false
        );
    }
    else {
        alert ("Time button not found!");
    }
}

... ...


Dziękuję Ci :-)

questionAnswers(1)

yourAnswerToTheQuestion