mirror of
https://github.com/usetrmnl/trmnl-firefox.git
synced 2026-08-13 23:18:13 -07:00
8 lines
251 B
JavaScript
8 lines
251 B
JavaScript
(function () {
|
|
// Check if we're on the dashboard page post-login
|
|
if (window.location.pathname === "/dashboard") {
|
|
// Send message to background script to refresh devices
|
|
chrome.runtime.sendMessage({ action: "refreshDevices" });
|
|
}
|
|
})();
|