Files
Fox.ci_Chrome_Extension/src/bg/background.js
Avi Ginsberg 835b7b3f0d Initial commit
2015-01-23 14:05:12 -05:00

13 lines
416 B
JavaScript
Executable File

// if you checked "fancy-settings" in extensionizr.com, uncomment this lines
// var settings = new Store("settings", {
// "sample_setting": "This is how you use Store.js to remember values"
// });
//example of using a message handler from the inject scripts
chrome.extension.onMessage.addListener(
function(request, sender, sendResponse) {
chrome.pageAction.show(sender.tab.id);
sendResponse();
});