Refined cppreference.com

Redirect to cppref.microblock.cc automatically.

  1. // ==UserScript==
  2. // @name Refined cppreference.com
  3. // @namespace https://cppref.microblock.cc/
  4. // @version 0.0.0
  5. // @description Redirect to cppref.microblock.cc automatically.
  6. // @author MicroBlock
  7. // @match https://*.cppreference.com/**
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=cppreference.com
  9. // @grant none
  10. // @run-at document-start
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. document.location.hostname = 'cppref.microblock.cc'
  18. })();