// ==UserScript== // @name 一键查看历年 GitHub 的贡献图 // @namespace LeoKu(https://leoku.top) // @version 0.0.1 // @description 一键查看历年 GitHub 的贡献图。 // @author LeoKu // @match http://github.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=v2ex.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== ; (function () { var yearList = document.querySelector('#year-list-container ul.filter-list'); if (yearList instanceof HTMLElement) { var item = document.createElement('li'); item.textContent = 'All'; yearList.appendChild(item); } })();