mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #319 from MetaMask/pdf
contentscript - skip web3 injection if domain appears to be a pdf
This commit is contained in:
commit
bec7bde883
@ -1,36 +1,52 @@
|
|||||||
const LocalMessageDuplexStream = require('./lib/local-message-stream.js')
|
const LocalMessageDuplexStream = require('./lib/local-message-stream.js')
|
||||||
const PortStream = require('./lib/port-stream.js')
|
const PortStream = require('./lib/port-stream.js')
|
||||||
const ObjectMultiplex = require('./lib/obj-multiplex')
|
const ObjectMultiplex = require('./lib/obj-multiplex')
|
||||||
|
const urlUtil = require('url')
|
||||||
|
|
||||||
// inject in-page script
|
if (shouldInjectWeb3()) {
|
||||||
var scriptTag = document.createElement('script')
|
setupInjection()
|
||||||
scriptTag.src = chrome.extension.getURL('scripts/inpage.js')
|
}
|
||||||
scriptTag.onload = function () { this.parentNode.removeChild(this) }
|
|
||||||
var container = document.head || document.documentElement
|
|
||||||
// append as first child
|
|
||||||
container.insertBefore(scriptTag, container.children[0])
|
|
||||||
|
|
||||||
// setup communication to page and plugin
|
function setupInjection(){
|
||||||
var pageStream = new LocalMessageDuplexStream({
|
|
||||||
name: 'contentscript',
|
|
||||||
target: 'inpage',
|
|
||||||
})
|
|
||||||
pageStream.on('error', console.error.bind(console))
|
|
||||||
var pluginPort = chrome.runtime.connect({name: 'contentscript'})
|
|
||||||
var pluginStream = new PortStream(pluginPort)
|
|
||||||
pluginStream.on('error', console.error.bind(console))
|
|
||||||
|
|
||||||
// forward communication plugin->inpage
|
// inject in-page script
|
||||||
pageStream.pipe(pluginStream).pipe(pageStream)
|
var scriptTag = document.createElement('script')
|
||||||
|
scriptTag.src = chrome.extension.getURL('scripts/inpage.js')
|
||||||
|
scriptTag.onload = function () { this.parentNode.removeChild(this) }
|
||||||
|
var container = document.head || document.documentElement
|
||||||
|
// append as first child
|
||||||
|
container.insertBefore(scriptTag, container.children[0])
|
||||||
|
|
||||||
// connect contentscript->inpage reload stream
|
// setup communication to page and plugin
|
||||||
var mx = ObjectMultiplex()
|
var pageStream = new LocalMessageDuplexStream({
|
||||||
mx.on('error', console.error.bind(console))
|
name: 'contentscript',
|
||||||
mx.pipe(pageStream)
|
target: 'inpage',
|
||||||
var reloadStream = mx.createStream('reload')
|
})
|
||||||
reloadStream.on('error', console.error.bind(console))
|
pageStream.on('error', console.error.bind(console))
|
||||||
|
var pluginPort = chrome.runtime.connect({name: 'contentscript'})
|
||||||
|
var pluginStream = new PortStream(pluginPort)
|
||||||
|
pluginStream.on('error', console.error.bind(console))
|
||||||
|
|
||||||
// if we lose connection with the plugin, trigger tab refresh
|
// forward communication plugin->inpage
|
||||||
pluginStream.on('close', function () {
|
pageStream.pipe(pluginStream).pipe(pageStream)
|
||||||
reloadStream.write({ method: 'reset' })
|
|
||||||
})
|
// connect contentscript->inpage reload stream
|
||||||
|
var mx = ObjectMultiplex()
|
||||||
|
mx.on('error', console.error.bind(console))
|
||||||
|
mx.pipe(pageStream)
|
||||||
|
var reloadStream = mx.createStream('reload')
|
||||||
|
reloadStream.on('error', console.error.bind(console))
|
||||||
|
|
||||||
|
// if we lose connection with the plugin, trigger tab refresh
|
||||||
|
pluginStream.on('close', function () {
|
||||||
|
reloadStream.write({ method: 'reset' })
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function shouldInjectWeb3(){
|
||||||
|
var urlData = urlUtil.parse(window.location.href)
|
||||||
|
var extension = urlData.pathname.split('.').slice(-1)[0]
|
||||||
|
var shouldInject = (extension !== 'pdf')
|
||||||
|
return shouldInject
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user