Erweitert Backloggd um mehr Spielinfos, reichere UI und QoL-Features
A userscript that extends Backloggd with extra game information, richer UI, and quality-of-life improvements — without leaving the site.
Compatible with Tampermonkey, Violentmonkey, Greasemonkey, ScriptCat, and other managers that support the // ==UserScript== metadata block.
Status: early (
0.7.21). Backloggd enrichment + list badges + Steam / SteamDB → Backloggd buttons.
Install URL:
https://raw.githubusercontent.com/NemoKing1210/backloggd-plus/main/backloggd-plus.user.js
| Manager | Path |
|---|---|
| Tampermonkey | Dashboard → Utilities → Install from URL |
| Violentmonkey | Dashboard → + → Install from URL |
| Greasemonkey | Add-on menu → New User Script → paste the raw URL |
Paste the install URL above.
backloggd-plus.user.js in this repository.The script includes @updateURL and @downloadURL metadata pointing to the raw GitHub file. Supported managers check for updates automatically.
To release a new version:
@version in backloggd-plus.user.js and backloggd-plus.meta.js.CHANGELOG.md.main (or create a GitHub Release).Game pages (/games/{slug}/):
Lists / search / journal (cover grids):
.game-cover cards — price, Steam review %, Owned, Wishlist, GameStatus (lazy-loaded in viewport)Steam app pages (store.steampowered.com/app/*, steamcommunity.com/app/*):
.apphub_OtherSiteInfo (same style as SteamDB / Community Hub)SteamDB app pages (steamdb.info/app/*):
nav.app-links (same .btn style as Store / IGDB)Settings (navbar Plus on Backloggd / userscript manager menu):
| Site | URL pattern |
|---|---|
| Backloggd | https://www.backloggd.com/* |
| Backloggd (apex) | https://backloggd.com/* |
| Steam Store (app) | https://store.steampowered.com/app/* |
| Steam Community (app) | https://steamcommunity.com/app/* |
| SteamDB (app) | https://steamdb.info/app/* |
Backloggd game page Steam / SteamDB app page
│ │
▼ ▼
Enrichment rows (Steam/MC/Links) Steam: .apphub_OtherSiteInfo
│ SteamDB: nav.app-links → .btn
▼
storesearch → appdetails
SPA navigations on Backloggd use Turbo events, MutationObserver, and an href poll.
backloggd-plus/
├── backloggd-plus.user.js # Installable userscript (canonical distribution file)
├── backloggd-plus.meta.js # Metadata-only companion for faster update checks
├── README.md # Documentation and install instructions
├── CHANGELOG.md # Version history
├── LICENSE # MIT license
└── .gitattributes # GitHub linguist overrides
| File | Purpose |
|---|---|
backloggd-plus.user.js |
Full script served at @downloadURL / @updateURL |
backloggd-plus.meta.js |
Lightweight metadata mirror; managers may fetch it instead of the full script when checking for updates |
Key // ==UserScript== fields used by managers:
| Field | Value |
|---|---|
@namespace |
https://github.com/NemoKing1210/backloggd-plus |
@version |
Semantic version (must be bumped on every release) |
@updateURL / @downloadURL |
Raw GitHub URL of backloggd-plus.user.js |
@homepageURL |
This repository |
@supportURL |
GitHub Issues |
@license |
MIT |
@grant |
GM_xmlhttpRequest, GM_getValue, GM_setValue, GM_addStyle, GM_registerMenuCommand |
@connect |
store.steampowered.com, api.steampowered.com, gamestatus.info |
@match |
Backloggd /*, Steam Store/Community /app/*, SteamDB /app/* |
Localized @name and @description tags are provided for en, ru, zh-CN, es, pt-BR, de, fr, ja, ko, and pl.
| Grant | Purpose |
|---|---|
GM_xmlhttpRequest |
Fetch external data when features need it (bypasses CORS) |
GM_getValue / GM_setValue |
Persist settings and cache between sessions |
GM_addStyle |
Inject UI styles |
GM_registerMenuCommand |
Open settings from the manager menu |
@connect covers Steam Store / Steam Web API and GameStatus.
backloggd-plus.user.js file.Tampermonkey does not track local files natively. Options:
@updateURL / @downloadURL to http://localhost:... during development (do not commit local URLs).Constants near the top of backloggd-plus.user.js can be adjusted as features land (cache keys, debounce intervals, API bases, etc.).
This project is not affiliated with Backloggd. It is an independent community userscript.
MIT — Copyright (c) 2026 NemoKing