allow-translate

允许谷歌浏览器对temu站点进行翻译

  1. // ==UserScript==
  2. // @name allow-translate
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-04-24
  5. // @description 允许谷歌浏览器对temu站点进行翻译
  6. // @author Deyu
  7. // @include https://www.temu.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=temu.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. document.documentElement.setAttribute("translate", "")
  15. })();