- Firefox-Version
- 94.0.1
- Betriebssystem
- Win10
moin, moin...
Ich hab eben beim Stöbern folgendes Script gefunden:
JavaScript
// ==UserScript==
// @name Camp Firefox Fx Version + Betriebssytem
// @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==
// Herkunft:
// https://www.camp-firefox.de/forum/thema/131129-fenster-alles-anzeigen-mit-klick-%C3%B6ffnen-und-schlie%C3%9Fen/?postID=1152213#post1152213
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];
customOptions[1].value = 'Windows 10 Home 64 Bit';
}
Alles anzeigen
Gibts das auch irgenwo für ohne xxxmonkey?
Ich möchte nicht extra für 1 script ein zusätzliches Add-On installieren.