Square Face Generator - GitHub Avatar Helper

Add a "Generate Pixel Avatar" button to GitHub profile pages

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
  // @name         Square Face Generator - GitHub Avatar Helper
  // @namespace    http://square-face-generator.com/
  // @version      1.0
  // @description  Add a "Generate Pixel Avatar" button to GitHub profile pages
  // @author       Square Face Generator
  // @match        https://github.com/*
  // @icon         https://square-face-generator.com/favicon.svg
  // @grant        none
  // @homepageURL  https://square-face-generator.com/
  // ==/UserScript==

  (function() {
      if (!location.pathname.match(/^\/[^/]+$/)) return;

      const btn = document.createElement('a');
      btn.textContent = '🎮 Generate Avatar';
      btn.href = 'https://square-face-generator.com/?utm_source=github_userscript';
      btn.target = '_blank';
      btn.style.cssText = 'position:fixed;bottom:20px;right:20px;z-index:9999;padding:12px 20px;background:#7C3AED;color:white;border:none;border-radius:8px;text-decoration:none;font-weight:600;cursor:pointer;box-shadow:0 4px 12px rgba(124,58,237,0.3);';
      document.body.appendChild(btn);
  })();