Skip to content

Instantly share code, notes, and snippets.

View alexnj's full-sized avatar

Alex N. Jose alexnj

View GitHub Profile
@alexnj
alexnj / test-extension-slash-background.js
Created April 18, 2025 18:05
Chrome Extension Targets introspection
/**
* 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();
});