aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/contentscript.js
blob: 23df227b492e1b7cdee535b484aaceb58d3ddf73 (plain) (blame)
1
2
3
4
5
var scriptTag = document.createElement('script')
scriptTag.src = chrome.extension.getURL('scripts/web3.js')

scriptTag.onload = function() { debugger; this.parentNode.removeChild(this) }
;(document.head||document.documentElement).appendChild(scriptTag)