Created
May 13, 2014 22:14
-
-
Save Spittie/93adf218040d470abd40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var data = require("sdk/self").data; | |
| var pageMod = require("sdk/page-mod"); | |
| pageMod.PageMod({ | |
| include: "*.github.com", | |
| contentScriptFile: [data.url("lib/js/underscore.js"), | |
| data.url("lib/js/jquery.js"), | |
| data.url("lib/js/jstree.js"), | |
| data.url("lib/js/jquery.pjax.js"), | |
| data.url("lib/js/base64.js"), | |
| data.url("lib/js/github.js"), | |
| data.url("inject.js")], | |
| contentStyleFile: [data.url("lib/css/jstree.css"), | |
| data.url("inject.css"),], | |
| contentScriptWhen: "start" | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment