GitHub Show Stars

Show star counts after every GitHub repo link on all webpages

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

Yazar
h4rvey-g
Günlük kurulumlar
0
Toplam kurulumlar
0
Değerlendirmeler
0 0 0
Versiyon
1.0.0
Oluşturulma
21.03.2026
Güncellenme
21.03.2026
Boyut
16,7 KB
Lisans
N/A
Geçerli
Tüm siteler

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