// ==UserScript== // @name 显示 star-history 按钮 // @namespace https://juzibiji.top/ // @version 1.0.0 // @description 在 Github 网站顶部显示 star-history 按钮,star-history 是一个统计项目 Star 走势图的网站 // @author 桔子 // @match https://github.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(createButton,1000); })(); /** * 创建 Github1s 按钮 */ function createButton(){ const preSelectorButton = document .querySelector("#star-history-button"); if(preSelectorButton !== null){ return; } const projectName = location.pathname.substring(1); const starHistoryUrl = `https://star-history.t9t.io/#${projectName}`; const element = '