访问releases
// ==UserScript==
// @name 访问releases
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 快速访问项目的releases页面
// @author You
// @match *://github.com/*
// @icon https://www.google.com/s2/favicons?domain=tampermonkey.net
// ==/UserScript==
(function() {
'use strict';
// 获取当前页面的网址
let currentUrl = window.location.href;
// 拼接上/releases
let releasesUrl = currentUrl + '/releases';
// 创建悬浮按钮
let button = document.createElement('button');
button.style.position = 'fixed';
button.style.bottom = '20px';
button.style.right = '20px';
button.style.zIndex = '9999';
button.style.padding = '10px';
button.style.backgroundColor = '#4CAF50';
button.style.color = 'white';
button.style.border = 'none';
button.style.cursor = 'pointer';
button.innerHTML = '访问releases';
// 添加点击事件
button.addEventListener('click', function() {
window.open(releasesUrl, '_blank');
});
// 将按钮添加到页面中
document.body.appendChild(button);
})();