You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 4, 2020. It is now read-only.
notes: Chrome extension runtime vs tab send message
Use runtime.sendMessage in your content script. Use tabs.sendMessage in your background/popup script. As for chrome.tabs.onUpdated, it's called many times for updates like favicon, title, etc. You need to check if (tab.status == 'complete) before sending a message to your content script