- Firefox-Version
- Firefox 80.0 64 Bit
- Betriebssystem
- Windows 10 2004 64 Bit Home
Hallo
Habe dieses Skript:
Code
// ==UserScript==
// @name FF Forum wird FF Version und Windows Vers. eingetragen
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Sören
// @match https://www.camp-firefox.de/forum/neues-thema/*/
// @grant none
// ==/UserScript==
const customOptions = document.querySelectorAll('[id^="customOption"]');
const ua = navigator.userAgent.match(/Firefox\/([0-9]+\.[0-9.])/);
if (customOptions.length > 1) {
customOptions[0].value = 'Firefox ' + ua[1] + ' 64 Bit ';
customOptions[1].value = 'Windows 10 2004 64 Bit Home';
}// ==UserScript==
// @name New script
// @namespace Violentmonkey Scripts
// @match *://*/*
// @grant none
// @version 1.0
// @author -
// @description 27.8.2020, 12:35:54
// ==/UserScript==
Alles anzeigen
Habe eben festgestellt das nicht die aktuelle FF Version 80.0.1 eingetragen wird sondern 80.0. Was muss geändert werden?
Danke im voraus hwww