// ==UserScript== // @name 显示 Github1s 按钮 // @icon https://cdn.juzibiji.top/imggithub.png // @namespace https://juzibiji.top/ // @version 1.0.2 // @supportURL https://github.com/juzi214032/tampermonkye-scripts/issues // @description 在 Github 网站顶部显示 Github1s 按钮,Github1s 是一个利用 VsCode Online 浏览代码的项目 // @author 桔子 // @match https://github.com/* // @grant none // @require https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.slim.min.js // @downloadURL https://update.greasyfork.icu/scripts/421631/%E6%98%BE%E7%A4%BA%20Github1s%20%E6%8C%89%E9%92%AE.user.js // @updateURL https://update.greasyfork.icu/scripts/421631/%E6%98%BE%E7%A4%BA%20Github1s%20%E6%8C%89%E9%92%AE.meta.js // ==/UserScript== (function () { 'use strict'; createButton(); $(document).on("pjax:end", ()=>{ createButton(); }); })(); /** * 创建 Github1s 按钮 */ function createButton() { const preSelectorButton = document .querySelector("#github1sButton"); if (preSelectorButton !== null) { return; } const github1sUrl = `https://github1s.com${location.pathname}`; const element = '