mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
083373a24f
- Add Redis architecture implementation - Update browser extension functionality - Clean up deprecated files and documentation - Enhance backend handlers for auth, messages, search - Add new configuration options and settings - Update Docker and deployment configurations
12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
/* global chrome, browser */
|
|
|
|
// Browser compatibility polyfill
|
|
if (typeof browser === 'undefined' && typeof chrome !== 'undefined') {
|
|
browser = chrome;
|
|
}
|
|
|
|
// Export the browser object for use in other scripts
|
|
if (typeof module !== 'undefined' && module.exports) {
|
|
module.exports = browser;
|
|
}
|