download Tổng hợp các Userscripts

Voz bản mới bị mất mấy thanh chọn page ở đầu trang rồi có script nào chỉnh lại được ko

1000028379.jpg
 
Bữa nay phát hiện Script Lazyloadifier cài trên Violentmonkey nó có vấn đề gì đó với GoogleSheet.
Hễ bật nó lên thì GoogleSheets báo lỗi như ảnh, không sử dụng được. Tắt nó đi thì OK. Mình dùng Firefox
1731570973184.png
 
Auto Next PluralSight, add to bookmark:
JavaScript:
function autoNext() {
    console.clear();
    console.log("Pluralsight Auto Next Module\nAuthor: TekMonts");
    if (typeof window.autoNext !== 'undefined') {
        alert("The script has already been executed; there's no need to run it again!");
    } else {
        window.autoNext = () => {
            let buttons = Array.from(document.querySelectorAll('button')).filter(b => b.textContent === 'Continue to next module' || /^Start module \d+$/.test(b.textContent));
            buttons.forEach(b => {
                console.log(`Next module available, redirecting to ${b.textContent.replace("Start ", "")}`);
                b.click();
            });
        };
        setInterval(window.autoNext, 2500);
    }
};
autoNext();
 
có cái nào mình custom được bàn phím để điều hướng trên 1 trang web không ví dụ ấn mũi tên là tự động ấn nút next và ngược lại
 

Thread statistics

Created
Fioren,
Last reply from
Fioren,
Replies
668
Views
76,908
Back
Top