Skip to content

Instantly share code, notes, and snippets.

@shanomurphy
shanomurphy / background.js
Last active August 15, 2020 02:45
Chrome Extension Boilerplate – Toggle Using Browser Action
var toggle = false;
var status = 'off';
var the_tab_id = '';
function set_status() {
toggle = !toggle;
status = 'off';
if(toggle) { status = 'on'; }
}