jusfox/index.js

11 lines
209 B
JavaScript
Raw Permalink Normal View History

2016-07-19 15:19:05 +00:00
var self = require("sdk/self");
2016-07-19 15:31:03 +00:00
require("sdk/tabs").on("ready", getLinks);
function getLinks(tab) {
tab.attach({
2016-07-20 19:20:32 +00:00
contentScriptFile: [self.data.url("jquery.js"),
self.data.url("jusfox.js")]
2016-07-19 15:31:03 +00:00
});
2016-07-19 15:19:05 +00:00
}