NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name RG AutoFill
// @namespace own
// @include http://genius.com/new
// @version 2
// @grant none
// @author simivar
// @downloadURL https://openuserjs.org/install/simivar/RG_AutoFill.user.js
// @updateURL https://openuserjs.org/install/simivar/RG_AutoFill.user.js
// ==/UserScript==
$( document ).ready(function() {
// Potrzebne zmienne - nie dotykać
$(".show_additional_metadata").trigger( "click" );
var elUsername = document.getElementById("song_primary_artist");
$("#add_album_name").trigger( "click" );
var elAlbum = document.getElementById("song_album_appearances_attributes_ + 0 + _album_name");
var elDate1 = document.getElementById("song_release_date_1i");
var elDate2 = document.getElementById("song_release_date_2i");
var elDate3 = document.getElementById("song_release_date_3i");
var elLyrics = document.getElementById("song_lyrics");
// Artysta
elUsername.value = "Grubson";
//Album
elAlbum.value = "Alfa I Omega";
// Rok
elDate1.value = "2005";
// Miesiac (1-12)
elDate2.value = "10";
// Dzien
elDate3.value = "15";
// Nasza stopka do tekstu ;-)
elLyrics.value = "\n<hr><strong>[Tekst - Rap Genius Polska]</strong>";
});