Last active
March 29, 2016 21:21
-
-
Save wilkerlucio/83b0fe11d84a434946b0fa252ce15aa8 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 requireFile = function (src) { | |
| var script = document.createElement("script"); | |
| script.src = chrome.extension.getURL(src); | |
| script.defer = false; | |
| script.async = false; | |
| document.body.appendChild(script); | |
| }; | |
| requireFile("util/overrides-simple.js"); | |
| requireFile("js/goog/base.js"); | |
| requireFile("js/goog/deps.js"); | |
| requireFile("js/content-script.js"); | |
| requireFile("util/start.js"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment