-
-
Save yunooooo/c7ff1be950fe5f7f42e539e6be42e419 to your computer and use it in GitHub Desktop.
Autofill request template.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Reqbot Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Autofill reqbot template on requests.php | |
// @author Slyyxp | |
// @match https://jpopsuki.eu/forums.php?action=new&forumid=28 | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=jpopsuki.eu | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var template = "Artist:\nTitle:\nOriginal Artist:\nOriginal Title:\nUrl:\nTorrent Group:\nTags:\n" | |
var entryText = document.querySelector("div textarea").value=template; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment