I just need to see readme!!!
目前為
// ==UserScript==
// @name HideFilesSection
// @namespace http://tampermonkey.net/
// @version 0.1
// @description I just need to see readme!!!
// @author lane
// @match https://github.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const e = document.querySelector('.rgh-toggle-files');
if (e) {
e.click();
}
})();