Greasy Fork is available in English.
Only a Test Script
当前为
// ==UserScript==
// @name Test Script
// @namespace http://tampermonkey.net/
// @version 0.4
// @description Only a Test Script
// @author Nils
// @match https://www.google.de/
// @grant none
// ==/UserScript==
var image = document.createElement('img');
image = new Image(25, 25);
image.setAttribute('src', 'https://lh3.googleusercontent.com/Ned_Tu_ge6GgJZ_lIO_5mieIEmjDpq9kfgD05wapmvzcInvT4qQMxhxq_hEazf8ZsqA=w300');
var link = document.createElement("a");
link.setAttribute('href', 'https://www.youtube.com/?gl=DE');
//var node = document.createTextNode("Youtube");
//link.appendChild(node);
var div = document.getElementById("prm-pt");
div.appendChild(image);
link.appendChild(image);
div.appendChild(link);