Skip to content

Instantly share code, notes, and snippets.

View nathan-roberts's full-sized avatar
💭
Building

Nathan Roberts nathan-roberts

💭
Building
View GitHub Profile
@nathan-roberts
nathan-roberts / background.js
Created November 4, 2022 00:30 — forked from danharper/background.js
Bare minimum Chrome extension to inject a JS file into the given page when you click on the browser action icon. The script then inserts a new div into the DOM.
// this is the background code...
// listen for our browerAction to be clicked
chrome.browserAction.onClicked.addListener(function (tab) {
// for the current tab, inject the "inject.js" file & execute it
chrome.tabs.executeScript(tab.ib, {
file: 'inject.js'
});
});