GitHub Show Stars

Show star counts after every GitHub repo link on all webpages

Tendrás que instalar una extensión para tu navegador como Tampermonkey, Greasemonkey o Violentmonkey si quieres utilizar este script.

You will need to install an extension such as Tampermonkey to install this script.

Tendrás que instalar una extensión como Tampermonkey o Violentmonkey para instalar este script.

Necesitarás instalar una extensión como Tampermonkey o Userscripts para instalar este script.

Tendrás que instalar una extensión como Tampermonkey antes de poder instalar este script.

Necesitarás instalar una extensión para administrar scripts de usuario si quieres instalar este script.

(Ya tengo un administrador de scripts de usuario, déjame instalarlo)

Tendrás que instalar una extensión como Stylus antes de poder instalar este script.

Tendrás que instalar una extensión como Stylus antes de poder instalar este script.

Tendrás que instalar una extensión como Stylus antes de poder instalar este script.

Para poder instalar esto tendrás que instalar primero una extensión de estilos de usuario.

Para poder instalar esto tendrás que instalar primero una extensión de estilos de usuario.

Para poder instalar esto tendrás que instalar primero una extensión de estilos de usuario.

(Ya tengo un administrador de estilos de usuario, déjame instalarlo)

Autor
h4rvey-g
Instalaciones diarias
0
Instalaciones totales
0
Calificaciones
0 0 0
Versión
1.0.0
Creado
21/03/2026
Actualizado
21/03/2026
Tamaño
16.7 KB
Licencia
Desconocida
Funciona en
Todos los sitios

github-show-stars

A Tampermonkey userscript that automatically shows ⭐ star counts next to every GitHub repository link on any webpage you visit.

Screenshot showing star badges next to GitHub links


Features

  • 🌐 Works everywhere – runs on every webpage, not just GitHub itself.
  • Fast – results are cached for 15 minutes so the same repo is only fetched once per browsing session window.
  • 🔄 SPA / dynamic content aware – uses a MutationObserver to pick up links added after the initial page load (Reddit, Twitter/X, Hacker News, etc.).
  • 🔒 Optional authentication – set a personal access token to raise the GitHub API rate limit from 60 to 5,000 requests/hour.
  • 🎨 Clean badge UI – small, unobtrusive inline badges that match the style of GitHub itself.

Installation

  1. Install the Tampermonkey browser extension.
  2. Click the link below (or open the raw file) to install the script:

➕ Install github-show-stars.user.js

Tampermonkey will open an installation dialog – click Install.


Optional: GitHub Personal Access Token

The unauthenticated GitHub API allows only 60 requests per hour per IP address. If you visit pages with many GitHub links you may hit this limit quickly.

To raise the limit to 5,000 requests/hour, create a fine-grained (or classic) Personal Access Token with no extra scopes (read-only public data is sufficient), then store it using one of the methods below.

Method 1 – Tampermonkey script menu (recommended)

  1. Click the Tampermonkey icon in your browser toolbar.
  2. Hover over GitHub Show Stars in the script list.
  3. Click Set GitHub Token.
  4. Paste your token in the prompt and click OK.
  5. Reload the page for the new token to take effect.

Method 2 – Browser DevTools console

// Run this in the browser DevTools console on any page where the script is active
GM_setValue('github_token', 'ghp_yourTokenHere');

The token is stored securely in Tampermonkey's own storage and is never exposed to the visited page.


How it works

  1. After the page loads the script scans all <a> tags whose href contains github.com.
  2. For each link that matches the pattern github.com/<owner>/<repo> a small badge is inserted immediately after the link.
  3. The badge shows ⭐ … while the request is in-flight, then updates to the real star count (e.g. ⭐ 4.2k).
  4. If the request fails (private repo, rate limit, network error) the badge shows ⭐ ? with a tooltip describing the error.
  5. A MutationObserver watches the page for newly added links and processes them on the fly.

Development

The script is a single self-contained file (github-show-stars.user.js). No build step is required.

To iterate locally:

  1. Enable "Allow access to file URLs" in Tampermonkey's settings.
  2. Edit github-show-stars.user.js in your editor.
  3. In Tampermonkey's dashboard, add the script by pointing it at the local file path (file:///path/to/github-show-stars.user.js).
  4. Reload the browser tab to pick up changes.

License

MIT