m.YouTube.com open video links in new tab on subscriptions page

Opens youtube video links in new tab on the subscriptions page. Works on mobile or tablet only (m.youtube.com).

// ==UserScript==
// @name         m.YouTube.com open video links in new tab on subscriptions page
// @namespace    m-youtube-com-open-links-in-new-tab
// @version      1.0
// @description  Opens youtube video links in new tab on the subscriptions page. Works on mobile or tablet only (m.youtube.com).
// @author       hlorand.hu
// @match        https://m.youtube.com/feed/subscriptions
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// @license      https://creativecommons.org/licenses/by-nc-sa/4.0/
// ==/UserScript==


(function() {

    setInterval(() => {
        document.querySelectorAll('a[href*="watch?v="]:not([target="_blank"])').forEach(a => {
            a.setAttribute('target', '_blank');
        });
    }, 1000);

})();