β€ Install from Chrome Web Store
Imagine a world where your developers never waste another minute hunting for the right link, where every tool, doc, and dashboard is just one tab away. TNT is the productivity multiplier for high-performing teamsβengineered to eliminate friction, boost focus, and let your talent do what they do best: build, create, and deliver.
If you believe time is your most valuable asset, TNT is your secret weapon. Supercharge your workflow, empower your team, and make every new tab a launchpad for greatness.
TNT (Team New Tab) is a Chrome extension that replaces the default new tab page with a beautiful, organized dashboard featuring spaces, time-based activation and filterring.
- Automatically loads your custom dashboard on every new tab
- Clean, modern interface with responsive design
- Seamless integration with Chrome
- Create multiple spaces for different contexts (Work, Personal, Projects, etc.)
- Each space maintains its own links and configuration
- Easy switching between spaces with dropdown selector
- Spaces automatically activate based on configured time ranges
- Perfect for separating work hours from personal time
- Manual override available at any time
- Organize links with tags and categories
- Quick filter chips for instant link discovery
- Visual count indicators for each filter
- Light Mode: Clean and bright interface
- Dark Mode: Easy on the eyes for extended use
- Auto Mode: Follows your system preference
- Built-in Google search functionality
- Quick access without leaving your dashboard
- JSON-based configuration for easy sharing
- Support for both URL-hosted and raw JSON configs
- Local storage with Chrome's secure storage API
-
Clone or download this repository
git clone https://github.com/your-username/tnt.git cd tnt -
Open Chrome Extensions
- Navigate to
chrome://extensions/ - Enable Developer mode (toggle in top-right corner)
- Navigate to
-
Load the Extension
- Click "Load unpacked"
- Select the project folder containing
manifest.json
-
Start Using TNT
- Open a new tab to see TNT in action
- Click the + button to add your first space
- Click the + Add Space button
- Choose between JSON URL or Raw JSON input
- Use the configuration format below or start with the provided template
- Save and enjoy your customized new tab experience!
TNT uses a simple JSON format for space configuration:
{
"name": "My Workspace",
"version": "v1",
"mode": "auto",
"activeTime": {
"start": "09:00",
"end": "18:00",
"activeDays": ["Mon", "Tue", "Wed", "Thu", "Fri"]
},
"links": [
{
"label": "GitHub Repository",
"url": "https://github.com/myorg/project",
"tag": "Development",
"icon": "github"
},
{
"label": "Figma Design System",
"url": "https://figma.com/design-system",
"tag": "Design",
"icon": "figma"
},
{
"label": "AWS Console",
"url": "https://console.aws.amazon.com",
"tag": "DevOps",
"icon": "amazonaws"
},
{
"label": "Project Wiki",
"url": "https://wiki.company.com/project",
"tag": "Documentation",
"icon": "gitbook"
}
]
}
| Field | Type | Description |
|---|---|---|
name |
string | Display name for the space |
version |
string | Configuration version (currently "v1") |
mode |
string | Activation mode: "auto", "manual", or "always" |
activeTime |
object | Time range when space is active (24-hour format) |
activeTime.start |
string | Start time (e.g., "09:00") |
activeTime.end |
string | End time (e.g., "18:00") |
activeTime.activeDays |
array | (Optional) Days of the week when the space is active (e.g., ["Mon", "Tue", "Wed", "Thu", "Fri"]). If omitted, the space is active every day. |
links |
array | Array of link objects |
links[].label |
string | Display text for the link |
links[].url |
string | Target URL |
links[].tag |
string | Filter tag (unique tags are automatically used as filters) |
links[].icon |
string | (Optional) Icon slug from Simple Icons (e.g., "github", "figma") |
Note: Filters are automatically derived from the unique tags in your links. You don't need to specify them manually.
TNT supports beautiful icons for your links using Simple Icons:
- Icon Source: Icons are loaded from Simple Icons CDN (
cdn.simpleicons.org) - Icon Format: Use the icon slug (lowercase name) from Simple Icons
- Fallback: If an icon is not found, a default link icon is displayed
- Optional: The
iconfield is optional - links work perfectly without icons
Popular Icon Examples:
{
"label": "GitHub",
"url": "https://github.com",
"icon": "github"
},
{
"label": "Google Drive",
"url": "https://drive.google.com",
"icon": "googledrive"
},
{
"label": "Slack",
"url": "https://slack.com",
"icon": "slack"
}
Finding Icon Slugs:
- Visit simpleicons.org
- Search for your desired brand/service
- Use the slug shown (usually the lowercase brand name)
- Common examples:
github,google,microsoft,apple,netflix,spotify,discord,slack
- Node.js 16+ (for development tools)
- Chrome browser for testing
# Clone the repository
git clone https://github.com/your-username/tnt.git
cd tnt
# Install development dependencies
npm install
# Start development watcher
npm run dev
npm run dev- Start development watcher with auto-reloadnpm run lint- Run ESLint for code qualitynpm run format- Format code with Prettiernpm run watch- Watch for file changes
tnt/
βββ manifest.json # Chrome extension manifest
βββ newtab.html # Main HTML template
βββ newtab.js # Core application logic
βββ styles.css # Styling and themes
βββ background.js # Extension background script
βββ config.js # Configuration utilities
βββ icons/ # Extension icons
βββ dev-tools/ # Development utilities
We welcome contributions! Please see our Contributing Guidelines for details.
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
- Follow the existing code style (enforced by ESLint and Prettier)
- Write clear commit messages
- Test your changes thoroughly
- Update documentation as needed
This project is licensed under the BSD 3-Clause License - see the LICENSE file for details.
The BSD 3-Clause License allows:
- β Free use for any purpose (including commercial)
- β Modification and distribution
- β Private use
- β Commercial use
With the following conditions:
- π Include the original copyright notice
- π Include the license text
- π Include any attribution notices
- Built with modern web technologies
- Icons provided by Font Awesome
- Fonts by Google Fonts
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Documentation: Wiki
Star β this repo if you find it helpful!