// ==UserScript== // @name Thing Remix Attribution Maker // @namespace http://poikilos.org/ // @version 1.0 // @description Format the license information from a thing page // @author Poikilos (Jake Gustafson) // @include https://www.thingiverse.com/thing:* // @grant none // @downloadURL none // ==/UserScript== (function() { // @ m a t c h https://www.thingiverse.com/thing:* 'use strict'; var info = {}; var pageInfoEs = document.getElementsByClassName("item-page-info"); if (pageInfoEs.length >= 1) { var pageInfoE = pageInfoEs[0]; // There should only be one. // pageInfoE.innerHTML += ""; //or: // See https://www.w3schools.com/jsref/met_document_createelement.asp var btn = document.createElement("BUTTON"); // Create a