Add scpexplained links to SCP top rated page

Adds scpexplained links (http://scpexplained.wikidot.com/) to http://www.scp-wiki.net/top-rated-pages for ease of access. Not all SCPs have a corresponding scpexplained article

当前为 2020-03-25 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Add scpexplained links to SCP top rated page
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Adds scpexplained links (http://scpexplained.wikidot.com/) to http://www.scp-wiki.net/top-rated-pages for ease of access. Not all SCPs have a corresponding scpexplained article
  6. // @author You
  7. // @include *scp-wiki.net/top-rated-pages*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. var box = document.getElementsByClassName("list-pages-box")[1];
  15. box.innerHTML = box.innerHTML.replace(/(href="(.*)">.*<\/a>)/g, '$1 (<a href="http://scpexplained.wikidot.com$2">Explained</a>)');
  16. })();