mirror of
https://github.com/c0de-archive/Fox.ci_Chrome_Extension.git
synced 2025-08-14 02:19:04 +00:00
13 lines
416 B
JavaScript
13 lines
416 B
JavaScript
![]() |
// 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();
|
||
|
});
|