This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* background.js | |
* | |
* This script runs in the background and listens for the Chrome startup event. | |
* When Chrome starts, it creates a new popup window displaying popup.html. | |
*/ | |
chrome.runtime.onStartup.addListener(() => { | |
openPopupWindow(); | |
}); |
OlderNewer