JustEat auto set order note

Auto fill order note during just eat order

// ==UserScript==
// @name         JustEat auto set order note
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Auto fill order note during just eat order
// @author       Valerio Montieri
// @license MIT
// @match        https://www.justeat.it
// @include      https://www.justeat.it/order/time/?menu=*&basket=*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=justeat.it
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let textArea = document.getElementById('Note');
    textArea.value = 'Le tue note qui';

})();