Greasy Fork is available in English.

§
Опубліковано: 19.11.2016
Edited: 19.11.2016

multi tab

this is html code
http://pastebin.com/QHp1UAy2

i want script when click Submit (button it will open 2 or 3 tab submit

§
Опубліковано: 24.11.2016

dump .... nobody help!!?

§
Опубліковано: 29.11.2016

hello hello?

§
Опубліковано: 30.11.2016

You have to provide the URL you want the script to work on.

§
Опубліковано: 30.11.2016

You would probably want something like this:

document.getElementById("btn").addEventListener("click", function(event) {
var link = document.createElement("a");
link.href = window.location.href;
link.target = "_blank";
link.click();
link.click();
link.click();
});

§
Опубліковано: 30.11.2016
Edited: 30.11.2016

Here Is html code
http://pastebin.com/QHp1UAy2

its not working

// ==UserScript==
// @name MULTI TAB
// @namespace Cradit By Tom Burris2
// @description Multi Tab Open
// @include *
// @version 1
// @grant none
// ==/UserScript==

document.getElementById("btn").addEventListener("click", function(event) {
var link = document.createElement("a");
link.href = window.location.href;
link.target = "_blank";
link.click();
link.click();
link.click();
});

Опублікувати відповідь

Sign in to post a reply.