mirror of
https://github.com/c0de-archive/Fox.ci_Chrome_Extension.git
synced 2025-08-16 03:19:03 +00:00
Initial commit
This commit is contained in:
13
src/bg/background.js
Executable file
13
src/bg/background.js
Executable file
@@ -0,0 +1,13 @@
|
||||
// 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();
|
||||
});
|
Reference in New Issue
Block a user