Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name VFL Open All
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match http://vfl.ru/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- function openAll() {
- list.childNodes.forEach((node, index, coll) => {
- setTimeout(() => {
- if (node.wholeText == "\n") return;
- if (node.tagName == "LI") {
- const href = node.childNodes[0].href;
- window.open(href,'_blank');
- }}, index * 250)
- });
- }
- let list = document.querySelectorAll("ul")[1];
- let button = document.createElement("button");
- button.innerHTML = "Открыть";
- button.onclick = openAll;
- list.insertBefore(button, list.firstChild)
- // Your code here...
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement