aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/blacklister.js
blob: f5572c11aeb8910bef1868ea2b89a31da6934ad0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const extension = require('extensionizer')
console.log('blacklister content script loaded.')

const port = extension.runtime.connect({ name: 'blacklister' })
port.postMessage({ 'pageLoaded': window.location.hostname })
port.onMessage.addListener(redirectIfBlacklisted)

function redirectIfBlacklisted (response) {
  const { blacklist } = response
  console.log('blacklister contentscript received blacklist response')
  const host = window.location.hostname
  if (blacklist && blacklist === host) {
    window.location.href = 'https://metamask.io/phishing.html'
  }
}