一键查看历年 GitHub 的贡献图。
当前为
// ==UserScript==
// @name 一键查看历年 GitHub 的贡献图
// @namespace LeoKu(https://leoku.top)
// @version 0.0.2
// @description 一键查看历年 GitHub 的贡献图。
// @author LeoKu
// @match https://github.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=v2ex.com
// @grant none
// @license MIT
// ==/UserScript==
;
(function () {
var _a, _b;
var leftCard = document.querySelector('.Layout-sidebar .h-card');
if (leftCard instanceof HTMLElement) {
var username_1 = (_b = (_a = document.querySelector('.vcard-username')) === null || _a === void 0 ? void 0 : _a.textContent) === null || _b === void 0 ? void 0 : _b.trim();
if (username_1) {
var item = document.createElement('div');
item.classList.add('border-top', 'color-border-muted', 'pt-3', 'mt-3', 'clearfix', 'hide-sm', 'hide-md');
var title = document.createElement('h2');
title.classList.add('h4', 'mb-2');
title.textContent = 'Green Wall';
var button = document.createElement('button');
button.classList.add('btn');
button.textContent = 'View All Green';
item.appendChild(title);
item.appendChild(button);
button.addEventListener('click', function () {
window.open("https://green-wall.leoku.dev/share/".concat(username_1), '_blank');
});
leftCard.appendChild(item);
}
}
})();