Greasy Fork 支持简体中文。

Fix encode

fixes the encode on strawpoll (no more å for example)

目前為 2020-10-19 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Fix encode
  3. // @namespace Fix encode by C4illin
  4. // @match https://www.strawpoll.me/*
  5. // @grant none
  6. // @version 1.1
  7. // @author C4illin
  8. // @description fixes the encode on strawpoll (no more å for example)
  9. // @license MIT; https://opensource.org/licenses/MIT
  10. // @copyright 2020, C4illin (https://github.com/C4illin)
  11. // ==/UserScript==
  12.  
  13. let title = document.querySelector("meta[property='title']").content
  14. document.querySelector("div#result-list > h1").textContent = title
  15. document.getElementsByTagName("title")[0].textContent = title