Display GitHub repository metadata directly in the About section. View creation date, update time, and 25+ customizable fields - all without leaving the page.
Repository metadata displayed directly in GitHub's native About section
Configure which metadata fields to display - choose from 25+ fields across 4 categories
Note: To create these screenshots:
- Load the extension:
npm run build && load dist/chrome in chrome://extensions- Visit any GitHub repo (e.g., https://github.com/facebook/react)
- Screenshot 1: Capture the About section showing the metadata
- Screenshot 2: Click extension icon → Settings, capture the "Displayed Fields" section
- Configurable Fields: Choose from 25+ metadata fields across 4 categories (dates, metrics, info, flags)
- Default Display: Shows repository creation date and last update time by default
- About Section Integration: Metadata appears natively in GitHub's About sidebar
- Popup & Panel Views: Quick popup or full side panel for detailed information
- Smart Caching: Local caching with automatic expiration to minimize API calls
- SPA Navigation Support: Works seamlessly with GitHub's Turbo framework
- Multiple Installation Methods: Available as Chrome/Firefox extension or userscript
Only needed for heavy usage. Without a token, you get 60 API requests/hour which is sufficient for normal browsing. Providing a token increases this to 5,000 requests/hour. See Configuration below.
Install from Chrome Web Store (Coming soon)
Install from Firefox Add-ons (Coming soon)
Install from Greasyfork (Coming soon)
Requires a userscript manager like:
- Tampermonkey (Chrome, Firefox, Safari, Edge)
- Violentmonkey (Chrome, Firefox, Edge)
- Greasemonkey (Firefox)
-
Clone this repository:
git clone https://github.com/your-username/github-quick-metadata.git cd github-quick-metadata -
Install dependencies and build:
npm install npm run build:chrome
-
Open Chrome/Edge and navigate to
chrome://extensions/ -
Enable "Developer mode" (toggle in top right)
-
Click "Load unpacked" and select the
dist/chromedirectory
-
Clone and build:
git clone https://github.com/your-username/github-quick-metadata.git cd github-quick-metadata npm install npm run build:firefox -
Open Firefox and navigate to
about:debugging#/runtime/this-firefox -
Click "Load Temporary Add-on"
-
Navigate to
dist/firefoxand selectmanifest.json
-
Clone and build:
git clone https://github.com/your-username/github-quick-metadata.git cd github-quick-metadata npm install npm run build:userscript -
Install a userscript manager (Tampermonkey/Violentmonkey/Greasemonkey)
-
Open
dist/userscript/github-quick-metadata.user.jsin your text editor -
Copy the entire contents
-
Create a new userscript in your userscript manager and paste the code
-
Navigate to any GitHub repository (e.g., https://github.com/facebook/react)
-
View metadata - Automatically displayed in GitHub's About section sidebar:
- Default: Creation date and last update time
- Customizable: Configure which fields to show in Settings
-
Extension users:
- Click the extension icon for a quick popup view
- Click "Open in Panel" for a full side panel view
- Access Settings to customize displayed fields
-
Userscript users: A "Repo Metadata" toggle button will appear on the page
-
Navigate between repositories: Metadata automatically updates when you navigate to different repos
Customize which metadata fields to show:
- Click the extension icon → Settings (gear icon)
- Scroll to "Displayed Fields" section
- Choose from 25+ fields in 4 categories:
- Date Fields: Created, Updated, Last Push
- Metrics: Stars, Forks, Size, Open Issues, Watchers, etc.
- Information: Language, License, Description, Homepage
- Flags: Archived, Fork, Has Issues, Has Wiki, etc.
Only needed for heavy usage. GitHub allows 60 API requests/hour without authentication, which is sufficient for normal browsing. A Personal Access Token increases this to 5,000 requests/hour.
To set up a token (if needed):
-
Generate a token:
- Go to GitHub Settings → Personal access tokens
- Click "Generate new token (classic)"
- Give it a name (e.g., "GitHub Quick Metadata")
- No permissions needed - leave all checkboxes unchecked (public read-only)
- Click "Generate token" and copy it immediately
-
Add to extension:
- Click extension icon → Settings
- Scroll to "GitHub Personal Access Token (Optional)"
- Paste token and it will be saved locally
Note: Your token is stored locally on your device and only used to authenticate with GitHub's API.
- Node.js 16+ and npm
- Modern web browser (Chrome/Firefox)
# Clone the repository
git clone https://github.com/your-username/github-quick-metadata.git
cd github-quick-metadata
# Install dependencies
npm install# Build all targets (Chrome, Firefox, Userscript)
npm run build
# Build specific target
npm run build:chrome # Chrome extension → dist/chrome/
npm run build:firefox # Firefox extension → dist/firefox/
npm run build:userscript # Userscript → dist/userscript/
# Development mode (watch for changes)
npm run dev
# Lint code
npm run lintgithub-quick-metadata/
├── src/
│ ├── core/ # Core business logic
│ │ ├── api.js # GitHub API client
│ │ ├── cache.js # localStorage caching layer
│ │ ├── parser.js # URL parsing and repo detection
│ │ ├── stats.js # Commit statistics calculation
│ │ └── navigation.js # SPA navigation handling
│ ├── ui/ # User interface components
│ │ ├── panel.js # Side panel component
│ │ ├── popup.js # Extension popup
│ │ └── settings.js # Settings page
│ ├── utils/ # Utility functions
│ │ ├── date.js # Date formatting
│ │ ├── dom.js # DOM manipulation helpers
│ │ └── github.js # GitHub page detection
│ ├── extension.js # Extension entry point
│ ├── userscript.js # Userscript entry point
│ ├── main-extension.js # Extension bundler entry
│ └── main-userscript.js # Userscript bundler entry
├── dist/ # Build output (generated)
│ ├── chrome/ # Chrome extension
│ ├── firefox/ # Firefox extension
│ └── userscript/ # Userscript
├── rollup.config.js # Build configuration
├── package.json
├── LICENSE
├── README.md
├── CHANGELOG.md
└── CONTRIBUTING.md
Contributions are welcome! Please read CONTRIBUTING.md for guidelines on how to:
- Report bugs
- Suggest features
- Submit pull requests
- Follow code style guidelines
MIT License - see LICENSE file for details.
- Built with Rollup for bundling
- Uses GitHub's REST API v3
- Inspired by the need for quick repository insights without leaving GitHub
- Issues: GitHub Issues
- Discussions: GitHub Discussions
Open Source | Privacy-First | No Data Collection

