Qidian.com Translate Enabler

Enable Google Translate on qidian.com

  1. // ==UserScript==
  2. // @name Qidian.com Translate Enabler
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Enable Google Translate on qidian.com
  6. // @author A nobody
  7. // @match https://www.qidian.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. // Your code here
  14. let html_tag = document.getElementsByTagName("html")[0];
  15. html_tag.setAttribute("translate", "yes");
  16. html_tag.classList.remove("notranslate");
  17. })();