Block-Thai

block Thai chars

  1. // ==UserScript==
  2. // @name Block-Thai
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description block Thai chars
  6. // @author Zeming Jiang
  7. // @match http*://www.v2ex.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. let replies = document.getElementsByClassName('reply_content');
  14. for (let reply of replies) {
  15. reply.innerText = reply.innerText.replace(/[\u0E01-\u0E3A,\u0E3F-\u0E5B]/g,'');
  16. }
  17. })();

QingJ © 2025

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