Seite 1 von 1

weed seedling id ?

Verfasst: Do Jun 29, 2023 11:59 am
von BubikolRamios

Re: weed seedling id ?

Verfasst: Do Jun 29, 2023 8:41 pm
von abeja
In my bookmarks I had this link (unwanted wild weeds and grasses in agriculture), but I could not find your plant.
The key contains 144 weeds, some pictures of seedlings are missing.

https://www.int-koop.de/unkraut/mod_liz ... index.html? (different languages possible)

Re: weed seedling id ?

Verfasst: Do Jun 29, 2023 11:36 pm
von BubikolRamios
Looks promising. Looking at it ...
Thanks.

Re: weed seedling id ?

Verfasst: Fr Jun 30, 2023 3:10 pm
von BubikolRamios
No luck will have to wait.

Your link, you can add this script to tampermonkey (with some nerves to use to get it working) and use
https://www.int-koop.de/unkraut/mod_liz ... index.html
as start page, in case of need...

Code: Alles auswählen

// ==UserScript==
// @name         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==



var input=document.createElement("input");
input.type="button";
input.value="Next";

var input1=document.createElement("input");
input1.type="button";
input1.value="Prev";

var found = parseInt(window.location.href.match(/\d+/g));
//alert(window.location.href.match(/\d+/));
//alert(window.location.href.replace(found.toString(),(found+1).toString()));
document.body.appendChild(input);
document.body.appendChild(input1);
input.onclick = function() {location = window.location.href.replace(found.toString(),(found+1).toString())};
input1.onclick = function() {location = window.location.href.replace(found.toString(),(found-1).toString())};

while (document.body.innerHTML.includes('wurde nicht gefunden'))
{
  location = window.location.href.replace(found.toString(),(found+1).toString())
}