Firefox 扩展:如何 运行 对 YouTube 上的每个视频更改起作用

Firefox extensions: How to run function on every video change on YouTube

我有一个扩展程序可以将 js 代码注入 YouTube 页面。我在 manifest.json 中使用了以下声明:

"content_scripts": [
    {
        "matches": [
            "*://*.youtube.com/*"
        ],
        "js": [
            "background.js"
        ]
    }
]

我想定义一个函数,当我转到另一个视频时打印视频名称、喜欢和不喜欢的数量以控制台。

我在 background.js 中写过:

window.onhashchange = function () {
    console.log(
        document.querySelector("h1.title > yt-formatted-string:nth-child(1)").innerHTML, "\n",
        document.querySelector("ytd-toggle-button-renderer.ytd-menu-renderer:nth-child(1) > a:nth-child(1) > yt-formatted-string:nth-child(2)").getAttribute("aria-label"), "\n",
        document.querySelector("ytd-toggle-button-renderer.style-scope:nth-child(2) > a:nth-child(1) > yt-formatted-string:nth-child(2)").getAttribute("aria-label"), "\n",
    )
}

但它只运行一次。如果我 select 来自 "Recommended" 的新视频它不起作用。我也试过.onload.onunload

UPD:现在我找到的唯一方法是使用 .setInterval

好吧,我的想法是找到一种方法来定期检查 URL 更改,所以我使用的技巧是利用用户需要单击 play/pause 按钮和当然在其他视频上观看。

因此在您的页面内 onload 事件...(W 是您的 iframe ID)

 if(W.contentWindow.document.URL.indexOf('www.youtube.com/watch?v=')>-1){ // You may want to add some more permissable URL types here

   W.contentWindow.document.body.addEventListener('click',function(e){ CheckForURLChange(W.contentWindow.document.title,W.contentWindow.document.location); },false);

 }

还有你的其他功能...

function CheckForURLChange(Title,URL){

  // Your logic to test for URL change and take any required steps

 if(StoredURL!==URL){}

 }

这不是最好的解决方案,但确实有效。

使用 WebExtensions API 的几种可能的解决方案都需要一个后台脚本来将消息发送到您的内容脚本。修改您的 manifest.json 以包括:

"background": {
    "scripts": ["background.js"]
}

我已将 background script background.js here, that would collide with what you currently have - you might want to consider to rename your content script 命名为类似 contentscript.js 的名称,因此您不会将两者混淆。

contentscript.js 中你有消息监听器

browser.runtime.onMessage.addListener(message => {
    if (message.videoChanged) {
        // do stuff
    }
});

使用tabs.onUpdated

manifest.json

中需要权限
"permissions": [
    "tabs"
]

background.js

browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
    if (!changeInfo.url) {
        // url didn't change
        return;
    }

    const url = new URL(changeInfo.url);
    if (!url.href.startsWith('https://www.youtube.com/watch?') ||
        !url.searchParams.get('v')) {
        // not a youtube video
        return;
    }

    browser.tabs.sendMessage(tabId, {videoChanged: true});
});

此方法将在首次访问时向内容脚本发送消息,同时进行现场导航或自动播放。


使用webNavigation.onHistoryStateUpdated

manifest.json

中需要权限
"permissions": [
    "webNavigation"
]

background.js

browser.webNavigation.onHistoryStateUpdated.addListener(history => {
    const url = new URL(history.url);
    if (!url.searchParams.get('v')) {
        // not a video
        return;
    }

    browser.tabs.sendMessage(history.tabId, {videoChanged: true});
},
    {url: [{urlMatches: '^https://www.youtube.com/watch\?'}]}
);

此方法在现场导航或自动播放时向内容脚本发送消息。


使用webRequest.onBeforeRequest or webRequest.onCompleted

YouTube 在视频更改时发出 xmlhttrequest。您可以通过打开开发人员工具 (Ctrl+Shift+I)、select 网络选项卡、select XHR、按 watch? 过滤然后让 YT 查看请求切换到下一个视频。您会看到针对下一个视频发生了两个请求,一个在视频更改前不久在 URL 中带有 prefetch 参数,另一个在视频实际更改时没有 prefetch 参数.

manifest.json

中需要权限
"permissions": [
    "https://www.youtube.com/watch?*",
    "webRequest"
]

background.js

browser.webRequest.onBeforeRequest.addListener(request => {
    const url = new URL(request.url);
    if (!url.searchParams.get('v') || url.searchParams.get('prefetch')) {
        // not a video or it's prefetch
        return;
    }

    browser.tabs.sendMessage(request.tabId, {videoChanged: true});
},
    {urls: ['https://www.youtube.com/watch?*'], types: ['xmlhttprequest']}
);

onBeforeRequest 可能有点太快了,在新视频实际完成加载之前将消息发送到内容脚本。在这种情况下,您可以将其替换为 onCompleted.

此方法在现场导航或自动播放时向内容脚本发送消息。