first commit

This commit is contained in:
2020-06-25 15:12:51 +02:00
commit 40ea05385c
17 changed files with 1064 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
var s = document.createElement('script');
s.src = chrome.extension.getURL('injected.js');
s.onload = function () {
this.remove();
};
(document.head || document.documentElement).appendChild(s);