Skip to content

Instantly share code, notes, and snippets.

View stishenok's full-sized avatar
:shipit:

Andrei Stsishanok stishenok

:shipit:
View GitHub Profile
https://ueokande.github.io/go-slice-tricks/
@stishenok
stishenok / ya.js
Last active March 27, 2020 14:10
Yandex Disk - Get all links for just uploaded files
var buttons = document.querySelectorAll('.listing-item_type_file');
buttons.forEach(function(fileButton) {
fileButton.click();
var shareButton = document.querySelector('.ufo-resources-action-bar__primary-button_action_publish');
shareButton.click();
fileButton.click();
});