HideFilesSection

I just need to see readme!!!

目前為 2020-08-13 提交的版本,檢視 最新版本

// ==UserScript==
// @name         HideFilesSection
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  I just need to see readme!!!
// @author       lane
// @match        https://github.com/*
// @grant        none
// ==/UserScript==

;(async function () {
  const sleep = function * (sec) {
    while (true) {
      yield new Promise(res => setTimeout(res, sec * 1000))
    }
  }

  for await (const __ of sleep(0.5)) {
     const e = document.querySelector('.rgh-toggle-files');
     if (e) {
        e.click()
        break
     }
  }
})()

QingJ © 2025

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