Skip to content

Instantly share code, notes, and snippets.

@dhilipkmr
Last active February 6, 2019 10:37
Show Gist options
  • Save dhilipkmr/dd6836df123c0cf70e6c75ce72461da2 to your computer and use it in GitHub Desktop.
Save dhilipkmr/dd6836df123c0cf70e6c75ce72461da2 to your computer and use it in GitHub Desktop.
/* clicking the addon icon */
chrome.browserAction.onClicked.addListener(buttonClicked);
function buttonClicked(tab) {
var msg = {
type: 'clickResponse',
buttonClicked: true
}
chrome.tabs.sendMessage(tab.id, msg);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment