1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
hipchat-emoticons-for-all/firefox/index.js

16 lines
362 B
JavaScript

var self = require('sdk/self');
var pageMod = require("sdk/page-mod");
// a dummy function, to show how tests work.
// to see how to test this function, look at test/test-index.js
function dummy(text, callback) {
callback(text);
}
pageMod.PageMod({
include: "*.facebook.com",
contentScriptFile: ["./jquery.js", "./script.js"]
});
exports.dummy = dummy;