Qidian.com Translate Enabler 2

Enable Google Translate on qidian.com

// ==UserScript==
// @name         Qidian.com Translate Enabler 2
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Enable Google Translate on qidian.com
// @author       A nobody
// @match        https://www.qidian.com/*
// @match        *://www.qidian.com/*
// @match        *://book.qidian.com/*
// @match        *://m.qidian.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here
    let html_tag = document.getElementsByTagName("html")[0];
    html_tag.setAttribute("translate", "yes");
    html_tag.classList.remove("notranslate");
})();