You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
361 B
8 lines
361 B
console.log('\'Allo \'Allo! Content script')
|
|
|
|
var scriptTag = document.createElement('script')
|
|
// TODO: add "script.js" to web_accessible_resources in manifest.json
|
|
scriptTag.src = chrome.extension.getURL('scripts/web3.js')
|
|
|
|
// scriptTag.onload = function() { this.parentNode.removeChild(this) }
|
|
;(document.head||document.documentElement).appendChild(scriptTag) |