Greasy Fork is available in English.

一键开启github1s页面

需配合https://github.com/conwnet/github1s使用

질문, 리뷰하거나, 이 스크립트를 신고하세요.
  1. // ==UserScript==
  2. // @name 一键开启github1s页面
  3. // @namespace github
  4. // @author 伟大鱼塘
  5. // @description 需配合https://github.com/conwnet/github1s使用
  6. // @include https://github.com/
  7. // @match https://github.com/*
  8. // @version 1.0.1
  9. // ==/UserScript==
  10.  
  11. {
  12. setTimeout(() => {
  13. const href = `https://github1s.com${location.pathname}`
  14. const btn =
  15. `<a class="btn ml-2 d-none d-md-block" style="background: #8c7ae6; color: #fff;" target="_blank" href="${href}">` +
  16. '使用 github1s 打开' +
  17. '</a>'
  18. document.querySelector('.btn.ml-2.d-none.d-md-block').insertAdjacentHTML('beforeBegin', btn)
  19. }, 1000)
  20. }