Do Not Translate

防止浏览器翻译某些内容

  1. // ==UserScript==
  2. // @name Do Not Translate
  3. // @version 0.0.1
  4. // @description 防止浏览器翻译某些内容
  5. // @description:en Prevent translation of some elements
  6. // @icon https://ssl.gstatic.com/translate/favicon.ico
  7.  
  8. // @author ml98
  9. // @namespace http://tampermonkey.net/
  10. // @license MIT
  11.  
  12. // @match http://*/*
  13. // @match https://*/*
  14. // @grant none
  15. // ==/UserScript==
  16.  
  17. (function () {
  18. 'use strict';
  19. const rules = [
  20. /* {
  21. url: "regex to match url",
  22. selector: "selectors like tag, .class or #id"
  23. }, */
  24. {
  25. url: /.*/, /* for all sites */
  26. selector: "pre, code, .MathJax, .katex, .CodeMirror"
  27. }, {
  28. url: /https:\/\/github\.com/,
  29. selector: ".highlight"
  30. }, {
  31. url: /math\.stackexchange\.com/,
  32. selector: ".math-container"
  33. }, {
  34. url: /www\.mathworks\.com/,
  35. selector: ".code_responsive, .CodeBlock"
  36. }, {
  37. url: /wikipedia.org/,
  38. selector: "i, .monospaced, .texhtml"
  39. }
  40. ];
  41.  
  42. rules.filter(rule => rule.url.test(document.URL)).forEach(rule => {
  43. setInterval(() => {
  44. document.querySelectorAll(rule.selector).forEach(element => {
  45. element.setAttribute("translate", "no");
  46. });
  47. }, 2000);
  48. });
  49. })();
  50.  
  51.  

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址