Skip to content

Instantly share code, notes, and snippets.

View BinaryGeometry's full-sized avatar

Binary Geometry BinaryGeometry

View GitHub Profile
@BinaryGeometry
BinaryGeometry / background.js
Created March 1, 2018 09:56 — 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'
});
});