diff options
author | Tomer <11458759+tomer8007@users.noreply.github.com> | 2020-10-17 21:25:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-17 21:25:57 +0200 |
commit | e9757b2fd5be33b2925128a5f0441fca2e953e32 (patch) | |
tree | ce1b0ac137bf8ed367d9b788c2d00a7c983b959e /content_script.js | |
parent | Initial commit (diff) | |
download | widevine-l3-decryptor-e9757b2fd5be33b2925128a5f0441fca2e953e32.tar widevine-l3-decryptor-e9757b2fd5be33b2925128a5f0441fca2e953e32.tar.gz widevine-l3-decryptor-e9757b2fd5be33b2925128a5f0441fca2e953e32.tar.bz2 widevine-l3-decryptor-e9757b2fd5be33b2925128a5f0441fca2e953e32.tar.lz widevine-l3-decryptor-e9757b2fd5be33b2925128a5f0441fca2e953e32.tar.xz widevine-l3-decryptor-e9757b2fd5be33b2925128a5f0441fca2e953e32.tar.zst widevine-l3-decryptor-e9757b2fd5be33b2925128a5f0441fca2e953e32.zip |
Diffstat (limited to '')
-rw-r--r-- | content_script.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/content_script.js b/content_script.js new file mode 100644 index 0000000..ad0992d --- /dev/null +++ b/content_script.js @@ -0,0 +1,26 @@ +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('content_key_decryption.js');
+ await injectScript('eme_interception.js');
+}
+
+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 |