diff options
Diffstat (limited to '')
-rw-r--r-- | content_script.js | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/content_script.js b/content_script.js index ad0992d..d62d550 100644 --- a/content_script.js +++ b/content_script.js @@ -2,9 +2,9 @@ injectScripts(); async function injectScripts()
{
- await injectScript('lib/pbf.3.0.5.min.js');
- await injectScript('lib/cryptojs-aes_0.2.0.min.js');
- await injectScript('protobuf-generated/license_protocol.proto.js');
+ await injectScript('lib/pbf.3.0.5.min.js');
+ await injectScript('lib/cryptojs-aes_0.2.0.min.js');
+ await injectScript('protobuf-generated/license_protocol.proto.js');
await injectScript('content_key_decryption.js');
@@ -13,14 +13,14 @@ async function injectScripts() function injectScript(scriptName)
{
- return new Promise(function(resolve, reject)
- {
- var s = document.createElement('script');
- s.src = chrome.extension.getURL(scriptName);
- s.onload = function() {
- this.parentNode.removeChild(this);
- resolve(true);
- };
- (document.head||document.documentElement).appendChild(s);
- });
-}
\ No newline at end of file + return new Promise(function(resolve, reject)
+ {
+ var s = document.createElement('script');
+ s.src = chrome.extension.getURL(scriptName);
+ s.onload = function() {
+ this.parentNode.removeChild(this);
+ resolve(true);
+ };
+ (document.head||document.documentElement).appendChild(s);
+ });
+}
|