Test Script

Only a Test Script

Ekde 2017/10/20. Vidu La ĝisdata versio.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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);