GitHub Ingest Redirect

redirect GitHub repositories to gitingest.com

  1. // ==UserScript==
  2. // @name GitHub Ingest Redirect
  3. // @namespace Violentmonkey Scripts
  4. // @match https://github.com/*
  5. // @grant none
  6. // @version 2.0
  7. // @author maanimis
  8. // @description redirect GitHub repositories to gitingest.com
  9. // @grant GM_registerMenuCommand
  10. // @run-at document-end
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. GM_registerMenuCommand('Go to Gitingest', function() {
  18. const newUrl = window.location.href.replace('github.com', 'gitingest.com');
  19. window.location.href = newUrl;
  20. });
  21. GM_registerMenuCommand('Go to diagram', function() {
  22. const newUrl = window.location.href.replace('github.com', 'gitdiagram.com');
  23. window.location.href = newUrl;
  24. });
  25. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址