A lightweight browser extension for Chrome, Edge, and Brave that instantly identifies which environment (e.g., Staging, Production, Dev) you are currently browsing.
The extension reads a specific meta-tag from the HTML head and updates the browser toolbar icon's color, badge text, and tooltip accordingly.
Report Bug
·
Request Feature
- About The Project
- Key features
- Built With
- Screenshots
- Installation
- Website Integration
- Configuration
- Contributing
- License
When working with multiple environments like Production, Staging, and Development, it’s easy to lose track of which tab represents which instance. The TechStack Identifier solves this by providing immediate visual feedback directly in your browser's toolbar.
- Auto-Detection: Scans for
<meta name="company:tech">tags. - Profile-Based: Apply consistent colors/labels across multiple domains using profiles.
- Subdomain Support: Map a root domain once, and all subdomains inherit the settings.
- Exceptions: Force specific displays for exact URLs.
FireFox:
https://addons.mozilla.org/en-US/firefox/addon/techstack-identifier/
Google Chrome:
https://chrome.google.com/webstore/detail/techstack-identifier/bppcohfjnmjlengdelbjcepjmeackcnb
To enable detection, add this tag to your website's :
<meta name="company:tech" content="S" />
The extension matches the content value against your defined profiles.
The extension is fully customizable via a JSON editor in the settings.
{
"profiles": {
"standard": {
"S": { "label": "Staging", "color": "#1E90FF", "badge": "STG" },
"P": { "label": "Production", "color": "#FF0000", "badge": "PRD" }
}
},
"domainMapping": {
"default": "standard",
"example.com": "standard"
}
}
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENSE for more information.
