// ==UserScript== // @name 显示 Github1s 按钮 // @icon https://cdn.juzibiji.top/imggithub.png // @namespace https://juzibiji.top/ // @version 1.0.0 // @supportURL https://github.com/juzi214032/tampermonkye-scripts/issues // @description 在 Github 网站顶部显示 Github1s 按钮,Github1s 是一个利用 VsCode Online 浏览代码的项目 // @author 桔子 // @match https://github.com/* // @grant none // @downloadURL none // ==/UserScript== (function () { 'use strict'; setInterval(createButton, 1000); })(); /** * 创建 Github1s 按钮 */ function createButton() { const preSelectorButton = document .querySelector("#github1sButton"); if (preSelectorButton !== null) { return; } const github1sUrl = `https://github1s.com${location.path}`; const element = '
  • Github1s
  • '; document .querySelector('.pagehead-actions.flex-shrink-0.d-none.d-md-inline') .insertAdjacentHTML('afterBegin', element); }