github1s

Open in vs code

  1. // ==UserScript==
  2. // @name github1s
  3. // @namespace github1s
  4. // @version 1.0.0
  5. // @description Open in vs code
  6. // @author HCLonely
  7. // @iconURL https://github.com/fluidicon.png
  8. // @include *://github.com/*
  9. // @supportURL https://github.com/HCLonely/user.js
  10. // @homepage https://github.com/HCLonely/user.js
  11. // @require https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.slim.min.js
  12. // @run-at document-end
  13. // ==/UserScript==
  14.  
  15. (function () {
  16. $('ul.pagehead-actions').append(`
  17. <li>
  18. <div class="d-block js-toggler-container js-social-container">
  19. <button id="github1s-btn" class="btn btn-sm" aria-label="Open in VS Code" title="Open in VS Code">
  20. <svg t="1613473201265" class="octicon octicon-repo-forked" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1503" width="16" height="16"><path d="M746.222933 102.239573l-359.799466 330.820267L185.347413 281.4976 102.2464 329.864533l198.20544 182.132054-198.20544 182.132053 83.101013 48.510293 201.076054-151.558826 359.799466 330.676906 175.527254-85.251413V187.4944z m0 217.57952v384.341334l-255.040853-192.177494z" fill="#2196F3" p-id="1504"></path></svg>
  21. <span>VS Code</span>
  22. </button>
  23. </div>
  24. </li>
  25. `)
  26. $('#github1s-btn').click(() => { window.location.href = window.location.href.replace('github.com', 'github1s.com') })
  27. })()