Enhances the GitHub Reactions page, making them more compact.
当前为
// ==UserScript==
// @name Refined Reactions
// @license MIT
// @homepageURL https://github.com/patak-dev/refined-github-reactions
// @supportURL https://github.com/patak-dev/refined-github-reactions
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Enhances the GitHub Reactions page, making them more compact.
// @author patak-dev
// @match https://github.com/**
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement('style')
style.innerHTML = `
.js-reactions-container {
flex-direction: row !important;
position: absolute;
right: 5px;
transform: translate(0px, -13px);
}
.js-reactions-container .js-reaction-group-button {
background-color: var(--color-canvas-subtle);
}
.discussion-timeline-actions {
border-top: 0;
}
`
document.head.appendChild(style)
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址