Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name vocadb
- // @namespace 95.211.209.53-e85f8079-b847-455f-b080-8467e2977711@sanitysama
- // @description delimiters
- // @include http://vocadb.net/*
- // @include https://vocadb.net/*
- // @version 1
- // @grant none
- // @run-at document-end
- // ==/UserScript==
- var path1 = "http://vocadb.net/Album/DownloadTags/";
- var pathArray = window.location.pathname.split( '/' )[2];
- var path2 = "?setFormatString=true&formatString=%25artist%25%C2%B6%25discnumber%25%C2%B6%25track%25%C2%B6%25title%25%C2%B6%25album%25%C2%B6%25releaseyear%25%C2%B6(%25releaseevent%25)%20%25producers%25%25featvocalists%25";
- var link = path1.concat(pathArray,path2);
- // 1. Create the button
- var button = document.createElement("button");
- button.innerHTML = "Do Something";
- // 2. Append somewhere
- //var body = document.getElementsByTagName("body")[0];
- var node = document.getElementById("topBar");
- node.appendChild(button);
- // 3. Add event handler
- button.addEventListener ("click", function() {
- document.location.href = link;
- });
Advertisement
Add Comment
Please, Sign In to add comment