fixes the encode on strawpoll (no more å for example)
当前为
// ==UserScript==
// @name Fix encode
// @namespace Fix encode by C4illin
// @match https://www.strawpoll.me/*
// @grant none
// @version 1.1
// @author C4illin
// @description fixes the encode on strawpoll (no more å for example)
// @license MIT; https://opensource.org/licenses/MIT
// @copyright 2020, C4illin (https://github.com/C4illin)
// ==/UserScript==
let title = document.querySelector("meta[property='title']").content
document.querySelector("div#result-list > h1").textContent = title
document.getElementsByTagName("title")[0].textContent = title