Last active
June 10, 2024 08:53
-
-
Save Slyyxp/b845c4ea17d351a7154e98061ca626c4 to your computer and use it in GitHub Desktop.
Revisions
-
Slyyxp revised this gist
Jan 4, 2023 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,16 +1,16 @@ // ==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; })(); -
Slyyxp created this gist
Sep 5, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ // ==UserScript== // @name Reqbot Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description Autofill reqbot template on requests.php // @author Slyyxp // @match https://jpopsuki.eu/requests.php?action=new // @icon https://www.google.com/s2/favicons?sz=64&domain=jpopsuki.eu // @grant none // ==/UserScript== (function() { 'use strict'; var template = "Original Artist:\nOriginal Title:\nUrl:\nTorrent Group:\n" var entryText = document.querySelector("td textarea").value=template; })();