1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/app/scripts/phishing-detect.js

6 lines
359 B
JavaScript
Raw Normal View History

2018-08-13 00:57:58 +02:00
window.onload = function() {
2018-08-13 19:16:37 +02:00
if (window.location.pathname === '/phishing.html') {
2018-08-13 19:21:18 +02:00
document.getElementById('esdbLink').innerHTML = '<b>To read more about this scam, navigate to: <a href="https://etherscamdb.info/domain/' + window.location.hash.substring(1) + '"> https://etherscamdb.info/domain/' + window.location.hash.substring(1) + '</a></b>'
2018-08-13 00:57:58 +02:00
}
}