laepy6464 / Change User Agent to Pixel 3

// ==UserScript==
// @name         Change User Agent to Pixel 3
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Change User Agent to Pixel 3 with Chrome 126
// @match        *://*/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';

  // User-Agent para Google Pixel 3 con Chrome 126
  const newUserAgent = 'Mozilla/5.0 (Linux; Android 9; Pixel 3 Build/PQ1A.190821.001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36';

  // Cambia el User-Agent en el navegador
  const userAgentSetter = () => {
    Object.defineProperty(navigator, 'userAgent', {
      get: function () {
        return newUserAgent;
      }
    });
  };

  // Ejecuta el setter después de cargar la página
  window.addEventListener('load', userAgentSetter);
})();