jusfox/index.js

10 lines
176 B
JavaScript
Raw 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({
contentScriptFile: self.data.url("jusfox.js")
2016-07-19 15:31:03 +00:00
});
2016-07-19 15:19:05 +00:00
}