Qidian.com Translate Enabler

Enable Google Translate on qidian.com

// ==UserScript==
// @name         Qidian.com Translate Enabler
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Enable Google Translate on qidian.com
// @author       A nobody
// @match        https://www.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");
})();