Greasy Fork is available in English.

[Hadzy] Youtube Comment Analytics

Hadzy - The best youtube comment picker and great tool to search for all comments, open it with 'Activate' menu button

< 脚本[Hadzy] Youtube Comment Analytics的反馈

评价:好评 - 脚本一切正常

§
发表于:2020-03-12
编辑于:2020-03-12

Script needs to be updated as the Hadzy.com has a different version

Basically this is the new script that will work:

GM_registerMenuCommand("Activate", function(){
    if (location !== "https://hadzy.com/analytics/youtube/"){
        var here = window.location.href;
        GM_setValue("ytube", here);
        window.location.href = 'https://hadzy.com/analytics/youtube/';
    }
}, "A");


if (window.location.href === 'https://hadzy.com/analytics/youtube/'){
    var storedObject = GM_getValue("ytube");
    var input = document.querySelector('.MuiInputBase-input');
    var searchButton = document.querySelector('.MuiButtonBase-root');

    input.value = storedObject;
    searchButton.click();

    setTimeout(function(){
        var loadButton = document.querySelector('.MuiButtonBase-root.MuiFab-root');
        loadButton.click();
    }, 1000);
}
drhouse作者
§
发表于:2020-03-13

hey cheers for mentioning it and the code, by any chance are you associated with Hadzy or maybe just a fan like me

§
发表于:2020-03-13

Yes, I am from Hadzy :) Thank you for your community work, we really appreciate it.

发表回复

登录以发表回复。